feat(vision): live keypoint preview during video-file tracking#35
Merged
Conversation
Batch video tracking previously showed only a progress bar and drew no keypoints, so operators couldn't watch tracking happen (and the saved annotated video had no pose dots). - video_tracking_runner: add a throttled frame_cb (~10 preview/sec) to run(); _annotate now draws pose keypoints, so both the live preview and the saved _annotated.mp4 show dots. - cv_processor: extract shared draw_keypoints_on() helper used by both the live overlay and the batch annotation (draw_overlays delegates to it). - video_tracking_worker: new preview signal forwarding the runner frame_cb. - camera_panel: connect preview -> _preview.update_frame so the Camera-tab preview animates through frames with overlays during a run. - tests: runner frame-callback + keypoint rendering, worker re-emit.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Batch video tracking previously showed only a progress bar and drew no keypoints, so operators couldn't watch tracking happen (and the saved annotated video had no pose dots).