Proposal for new body detection models #344
Replies: 6 comments 19 replies
-
Note that currently largest model supported by btw, if you're looking for state-of-the-art body pose detection, my favorite model is https://istvansarandi.com/dozens/ |
Beta Was this translation helpful? Give feedback.
-
one way to handle it is to assume that people behave according to 'least action' principle. but if you have overlapping people (walking in front of each other, etc.), then you'd need to track coordinate as well as direction of movement and find closest person in that general direction only (but allow for some angle). that would solve it for most cases except when people walk straight towards camera and then overlap. then there is a problem of "cache expiration" - what if one person exits frame on the left and another enters on the right? also, which coordinate to store? i'd think the best would be to calculate center of face. regarding tracking how long they stay in front of camera? to do that reliably you'd need to solve first problem first. sorry for not-a-short-answer, probably not what you were hoping for... |
Beta Was this translation helpful? Give feedback.
-
i've taken a look at any real world solution would need to maintain a temporal map of objects so they can be re-attached. second thing is that body detection is nowehere near as reliable for busy frames, so it will constantly update. and but its a nice problem to solve. |
Beta Was this translation helpful? Give feedback.
-
i haven't updated |
Beta Was this translation helpful? Give feedback.
-
i'm thinking of first implementing object-tracking as a standalone repo and then integrate it as a module to human. |
Beta Was this translation helpful? Give feedback.
-
Hi Vlad! I see you added some commits for the tracking feature. I'd like to know if this is the final version or if you're still working on it. |
Beta Was this translation helpful? Give feedback.
-
Hi Vlad,
I'd like to propose the addition of new multipose body detection models to human repo. While existing models are excellent, I believe that adding new models would provide users with more options and enhance the overall usefulness of the repository.
I would like to suggest the following models:
I believe that adding these models to your repository would benefit your users and make the repository more comprehensive.
Thank you for your consideration. I look forward to your feedback.
Thank you so much!
Beta Was this translation helpful? Give feedback.
All reactions