What is the pose tracking method used in this simple-HRNet
jellyfish1456 opened this issue · 1 comments
jellyfish1456 commented
Hi~ Thank you for sharing this awesome job
I wanna ask that what is the tracking method you add in simple-HRNet?
Because the original method and paper seems to be no tracking method in it?
Thank you~
stefanopini commented
Hi!
It is a trivial tracking by detection algorithm, defined here:
Lines 382 to 425 in f4a8174
In short, it builds a similarity matrix between the previous and the current detections (based on bbox and pose similarity) then it associates previous and current detections with the Munkres algorithm to maximize the similarity of the associations.