-
Notifications
You must be signed in to change notification settings - Fork 411
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
Introducing multi object tracking - adding Joint Detection and Embedding Tracker (JDETracker) #92
base: main
Are you sure you want to change the base?
Conversation
@kalyanvasudev have shifted the multi object tracking component to the projects folder and have also the following: Would love to know your thoughts on the same, thank you. |
Hey @shardulparab97 is multi-object tracking still planned here? |
Hey @austinmw , yes I believe that multi-object tracking would be pretty good addition. Currently awaiting the repo maintainers response for the next steps! :) |
@shardulparab97 Hey, responding to #174, in my opinion this would be a cool addition as an example of joint-detection-association tracking. I would also personally be very interested in being able to perform tracking-by-detection by adding a modular tracker to an existing detector (like ByteTrack or StrongSORT for example). This would allow users to swap the detector and tracker components separately, depending on the relative difficulty of the detection and tracking tasks. |
Motivation and Context
Multi-object tracking(MOT) would be an exciting functionality which can be added to the pytorchvideo.
Likewise, I propose to add the Joint Detection and Embedding (JDE) Tracker introduced in the paper 'Towards Real-Time Multi-Object Tracking' (https://arxiv.org/abs/1909.12605).
This tracker can work with any model which can provide the following two inputs:
(i) pred_dets: Detection results of the image i.e. x1, y1, x2, y2, object_conf (The detections should/could be passed through NMS or a similar technique followed by scaling the coordinates to the original image size - This way allowing more flexibility for the tracker)
(ii) pred_embs: Embedding results of the image.
How Has This Been Tested
Have added a test file at tests/test_models_mot_tracker_jde_tracker.py
Types of changes
Checklist