Can't solve how to interact with a mouse during a non blocking visualization with point clouds #6949
Unanswered
alessandrocapialbi
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone, I have this issue with interactions. I have 50 scans of a selected number of LiDAR sensors. On these data I transform all the coordinates from local to global, then I implement clustering with bounding boxes and tracking. These 50 scans are in a loop, so when it finishes to process one of them, it continues with the next. Using the visualizer allows me to have some sort of animation of these point clouds during time. The problem is that I cannot zoom nor rotate freely into my scenario with the mouse, something that you can do in the static contest. I tried with VisualizerWithKeyCallback or VisualizerWIthEditing, but they don't help me much. Any suggestions? Here's the code:
for i in range(20, 71):
update_visualization function:
def visualize(vis, pcd_combined, bounding_boxes):
# Clear previous geometries
vis.clear_geometries()
def update_visualization(vis, pcd_combined, bounding_boxes):
# Update the visualization in the main thread
visualize(vis, pcd_combined, bounding_boxes)
Beta Was this translation helpful? Give feedback.
All reactions