Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

AttributeError: 'open3d.cpu.pybind.geometry.PointCloud' object has no attribute 'compute_boundary_points'

Open piw-bot opened this issue 1 year ago • 0 comments

Checklist

Describe the issue

I'm trying to use "compute_boundary_points()" on a point cloud but it results in an AttributeError. How is that possible?

I used the tutorial on https://www.open3d.org/docs/latest/tutorial/t_geometry/pointcloud.html for Boundary detection

Steps to reproduce the bug

pcd = o3d.io.read_point_cloud("MY_POINT_CLOUD")
boundarys, mask = pcd.compute_boundary_points(0.02, 30)

Error message

Traceback (most recent call last): File "C:\Users\PycharmProjects\stl_try_out\main.py", line 170, in open3d_boundary_detection() File "C:\Users\PycharmProjects\stl_try_out\main.py", line 154, in open3d_boundary_detection boundarys, mask = pcd.compute_boundary_points(0.02, 30) AttributeError: 'open3d.cpu.pybind.geometry.PointCloud' object has no attribute 'compute_boundary_points'

Expected behavior

No response

Open3D, Python and System information

- Operating system: Windows 10 64-bit
- Python version: Python 3.10
- Open3D version: 0.18.0
- System architecture: x86 
- Is this a remote workstation?:no
- How did you install Open3D?: pip

Additional information

No response

piw-bot avatar May 15 '24 07:05 piw-bot