isl-org / Open3D

Open3D: A Modern Library for 3D Data Processing
http://www.open3d.org
Other
11.22k stars 2.28k forks source link

how to use non-block visualization in open3d gui? #6915

Open blackjacket996 opened 1 month ago

blackjacket996 commented 1 month ago

Checklist

My Question

Hi~I've create a window using open3d.visualization.Visualizer.create_window() and add some TriangleMesh or Pointclouds in it, now I wanna add the window to gui to make more interactive function, but I find open3d.visualization.gui.Application.add_window() needs a window that is open3d::visualization::gui::Window type as a input, how can I make that achieved?

blackjacket996 commented 1 month ago

I wanna update the geometry in every loop in my function, so I need to use update_geometry() and update_render() in open3d.visualization.Visualizer. Is there any other same or similar function that can be used?