Closed RoninHunter closed 2 years ago
DeepSORT performs multi-object tracking based on: (1) bounding box coordinates, (2) appearance features. For more details of how this algorithm works, please take a look at the original author's paper. update_tracks
expects to either already receive pre-computed appearance features (via any external module/model), or it expects to receive the raw frames in order to compute the appearance features using the default embedders as described here.
Looking at your code I see all frames being funneled to a "generate_embeds()", however I don't see where the frame is given to the tracker similar to the above example.
This "funnelling" only happens if embeds
is not given. In the example you quoted, the frame
is as I explained in this other issue.
Do all forms of tracking require embeds?
I am asking because I am looking at your example below:
Looking at your code I see all frames being funneled to a "generate_embeds()", however I don't see where the frame is given to the tracker similar to the above example.