File "rs_to_open3d.py", line 19, in <module> point cloud = Point Cloud() NameError: name 'PointCloud' is not defined code example
Example: File "rs_to_open3d.py", line 19, in point cloud = Point Cloud() NameError: name 'PointCloud' is not defined
To solve that you should change it like this:
import open3d as o3d
pcd = o3d.geometry.PointCloud()