You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
Not an actual issue, more of a clarification request.
I'm trying to do hand pose estimation to a video.
Given this video:
This is what OpenPose returns:
It doesn't return the hands because it can't detect them.
Next, I tried to run this hand-tracking code, the simplest way I can:
forframeinframes:
hands=detector(frame)
As you can see, there are hands flying out, so I added a detector.reset() before invoking it every time:
Which does work better regarding flying hands, but has its own artifacts.
I then tried to perhaps feed the previously detected hands back:
Hi @AmitMY, sorry for the long wait, this project got kinda low on the priority list. Are you still interested in improving the pipeline?
If so - please send me an email (address in profile) and we could collaborate on it. There's plenty of work to be done starting all the way from hand detection, but I'm kind of reluctant to do it on my own.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Not an actual issue, more of a clarification request.
I'm trying to do hand pose estimation to a video.
Given this video:
This is what OpenPose returns:
It doesn't return the hands because it can't detect them.
Next, I tried to run this hand-tracking code, the simplest way I can:
As you can see, there are hands flying out, so I added a
detector.reset()
before invoking it every time:Which does work better regarding flying hands, but has its own artifacts.
I then tried to perhaps feed the previously detected hands back:
or to add a
detector.reset()
every time no hand is detected:and for completeness sake, here is a synchronized video of everything I tried:
The text was updated successfully, but these errors were encountered: