-
Notifications
You must be signed in to change notification settings - Fork 11
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
Video support for SAM2 #8
base: main
Are you sure you want to change the base?
Conversation
…used ontology entry
Feature/video sam trackid
Approach is based on the idea of running SAM2 Image predictor on each frame and propogating the mask and box prompts. A global data structure is tracking frame by frame change of ids, Ids are combined if the IOU between masks are greater than a threshold, and new Ids are added. It is an expensive approach as you have to run the image propogation is SAM2 for every frame. |
@capjamesg let me know what you think |
https://imgur.com/a/jIxYTMf
Added the ability to track objects over time with SAM2 and grounding DINO, the idea of it from IDEA-Research Grounded SAM implementation.