Reputation: 1
import open3d as o3d
ply_point_cloud = o3d.data.PLYPointCloud()
pcd = o3d.io.read_point_cloud(ply_point_cloud.path)
vis = o3d.visualization.Visualizer()
vis.create_window(visible=True)
# Call only after creating visualizer window.
vis.get_render_option().background_color = [0, 0, 1]
vis.add_geometry(pcd)
vis.run()
I got this code from Stackoverflow, still this was not working in my case. Can someone help me please....
When I run the code all i see is a loading white blank page
Upvotes: 0
Views: 54