CONTEXT
I'm trying to visualize 3d point cloud from disparity map. It works perfectly with one map.
ISSUE
I want to update what's in window. When I call run() method new thread is opened and I cannot do anything till the window will be closed. I'd like to clear what's in window and display new cloud without closing the window, so it would be something like animation.
CODE
I've created Visualizer object and I do everything on that.
vis = open3d.visualization.Visualizer()
vis.create_window()
cloud = open3d.io.read_point_cloud(out_fn) # out_fn is file name
vis.add_geometry(cloud)
vis.run()