Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2023
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | Software | 0 0
  1. point_cloud = pv.read(file_path2)
  2. point_cloud.plot()
  3. plotter = pv.Plotter()
  4. plotter.add_points(point_cloud)
  5. points = numpy.array(point_cloud.points)
  6. o3d_point_cloud = open3d.geometry.PointCloud()
  7. o3d_point_cloud.points = open3d.utility.Vector3dVector(points)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement