Upgrade MediaPipe Hand model #157
-
Hi |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 1 reply
-
Can you elaborate why do you think that model would perform better? Current hand model in You can see reference to the model at https://github.com/vladmandic/human/wiki/Models I can check if there were any recent upgrades to the MediaPipe's ML model itself and switch it if necessary. |
Beta Was this translation helpful? Give feedback.
-
Thank you for you answer |
Beta Was this translation helpful? Give feedback.
-
majority is due to choice of default parameters in (to be precise, you can set your
{
enabled: true,
rotation: true,
skipFrames: 10,
minConfidence: 0.2,
iouThreshold: 0.2,
maxDetected: 2,
landmarks: true,
}
Not aggregation, but frame-change detection Without interpolation and significant caching, there would be no chance to run all models combined in near real-time You can modify Btw, just to be clear, frame-change detection, result caching with best-guess analysis and in-between keyframes result interpolation are three different things - they work together, but they can all function independently in |
Beta Was this translation helpful? Give feedback.
-
@YaraAmin any updates? |
Beta Was this translation helpful? Give feedback.
-
Thank you for your response |
Beta Was this translation helpful? Give feedback.
-
I just rewrote parts of hand detector post-processing algorithm and pushed a new update on git, hand detection should be better now btw, given this resulted in a code change i'm converting this discussion into an issue |
Beta Was this translation helpful? Give feedback.
I just rewrote parts of hand detector post-processing algorithm and pushed a new update on git, hand detection should be better now
still room to improve, but i think this is a good start
btw, given this resulted in a code change i'm converting this discussion into an issue
please continue the thread in #160