-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
control zoom in non-blocking visualizer #1443
Comments
Perhaps you can modify the code to avoid the max/min in the code (check code in issue #1427): Note: I guess it is also related to this issue: #497 |
Hey thanks for the help!. |
Maybe just trying (in the line mentioned above): |
Hi! In the Open3D team, we take your question very seriously. In order to provide better assistance to our users, we are implementing new policies. Now general questions should be asked in our forum: https://forum.open3d.org Github issues will remain in use for bug reports and feature requests. We are looking forward to answering your question in our forum! Best regards. |
This should be now possible in the new visualization module. Please, see examples here: https://github.com/intel-isl/Open3D/tree/master/examples/python/gui |
Hi all,
I have several point clouds of the same environment and each of them have more or less height. Instead of loading everything at the same time, I am loading each cloud at a time, and register it against the previous loaded one and then show the result in a non-blocking visualizer. When I am trying to move the camera to place it in the center of each new point cloud and in a top-view (like birds eye view), I have problems setting the view to keep at the same height, meaning, if the new point cloud has more height than the previous one, the camera zoom shouldn't move. Right now I am trying to do it like this:
while the view is moving to keep it to the center of the x,y coords of the new cloud, the zoom keeps changing all the time.
Is there any way of keeping the same Z position in the viewer? Keeping a global variable for it or recomputing it every time, doesn't matter.
I cannot find anything indicating or explaining how to do it.
Thanks for the help
The text was updated successfully, but these errors were encountered: