Open RazanulHoque opened 4 years ago
Hi, RazanulHoque, please follow this:
from pclpy import pcl
filename='../chef.pcd' obj=pcl.PointCloud.PointXYZ()
pcl.io.loadPCDFile(filename,obj)
pcl.io.PCDReader().read(filename,obj)
obj.show()
Tried doing the same but it's giving the following error:
'pclpy.pcl.PointCloud.PointXYZ' object has no attribute 'show'
Any Idea how can I solve it?
Hi!
Forgive my intrusion! I'm very new here, but I was wondering if there was any possibility to read .pcd files with pclpy? Because so far, as I understand it, I've only found out that only .las files are readable? I'm currently doing a project for my university, and I'm working with mostly .pcd files.