Answers for "File "rs_to_open3d.py", line 19, in <module> point cloud = Point Cloud() NameError: name 'PointCloud' is not defined"

C
0

File "rs_to_open3d.py", line 19, in <module> 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()
Posted by: Guest on August-18-2020

Code answers related to "File "rs_to_open3d.py", line 19, in <module> point cloud = Point Cloud() NameError: name 'PointCloud' is not defined"

Code answers related to "C"

Browse Popular Code Answers by Language