Closed bhomaidan1990 closed 1 week ago
Hi @bhomaidan1990,
I think the bunny is alright. It just needs a smaller point size, maybe some color and can be scaled and turned up:
cloud = o3d.io.read_point_cloud('/Users/falko/Downloads/bunny.ply')
pts = np.asarray(cloud.points)
with ui.scene() as scene:
scene.point_cloud(pts, point_size=0.001).material('silver').scale(20).rotate(3.14 / 2, 0, 0)
@falkoschindler thanks
Description
I want to visualize the bunny point cloud using NiceGUI, here is the code that I'm using:
but as you can see the result is not OK, can you please tell me how I can fix that? thanks