-
Notifications
You must be signed in to change notification settings - Fork 701
cropbox example failing #123
Comments
The Pointcloud object has the following methods for me: ['class', 'delattr', 'doc', 'format', 'getattribute', 'getitem', 'hash', 'init', 'new', 'pyx_vtable', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof', 'str', 'subclasshook', '_from_pcd_file', '_from_ply_file', '_to_pcd_file', '_to_ply_file', 'extract', 'from_array', 'from_file', 'from_list', 'get_point', 'height', 'is_dense', 'make_kdtree_flann', 'make_moving_least_squares', 'make_octree', 'make_passthrough_filter', 'make_segmenter', 'make_segmenter_normals', 'make_statistical_outlier_filter', 'make_voxel_grid_filter', 'resize', 'sensor_orientation', 'sensor_origin', 'size', 'to_array', 'to_file', 'to_list', 'width'] |
After deleting the module containing pip, I delete the related file by calling the following file. Linux/MacOSX
Windows
|
@PeterTor and @Sirokujira I am facing the same issue. Can anyone help me with this issue? |
For everyone facing the same problem until we've figured out what happened to make_cropbox: I just had the same problem with PCL-1.9.1 and python-pcl. I solved it (temporarily) by applying a make_passthrough_filter twice - once for X and once for Y. Z you can filter the same way; in my case I needed to deal with Z differently.
It's probably not terribly efficient, but if you need something that works at least then this seems to do. :-) |
The solution in issue #187 worked for me. I just wrote "outcloud = clipper.filter()" instead of "clipper.Filtering(outcloud)" and it saved the resulting pcd-file in the python-pcl/examples folder. |
Hi I got the following exception when I execute the cropbox example:
AttributeError: 'pcl._pcl.PointCloud' object has no attribute 'make_cropbox'
any idea?
The text was updated successfully, but these errors were encountered: