Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- point_cloud = pv.read(file_path2)
- point_cloud.plot()
- plotter = pv.Plotter()
- plotter.add_points(point_cloud)
- points = numpy.array(point_cloud.points)
- o3d_point_cloud = open3d.geometry.PointCloud()
- o3d_point_cloud.points = open3d.utility.Vector3dVector(points)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement