python-pcl
python-pcl copied to clipboard
AttributeError: module 'pcl' has no attribute 'load'
it is a little bit weird that I could run 'import pcl p = pcl.load(".pcd")' in the terminal but there is an error when I run it through spyder.
I am using anaconda in ubuntu 16.4 and the version of python-pcl is 0.3.0a1. Any ideas or suggestions?
Since you didn't specify the error I can't be sure, but it's probably that the path to the pcd file is incorrect. Try giving it an absolute path. e.g. cloud = pcl.load('/home/user/myfolder/myfile.pcd')
Since you didn't specify the error I can't be sure, but it's probably that the path to the pcd file is incorrect. Try giving it an absolute path. e.g. cloud = pcl.load('/home/user/myfolder/myfile.pcd')
The error is the title of the issue what do you mean?
Also the error is saying that the 'load' method doesn't exist in the pcl module, giving absolute path doesn't work here
Recently, I alse met this problem, I think there is not load function in this pcl version