Kinect fast hand tracking method

一世执手 提交于 2020-01-24 00:48:11

问题


How can I track fast hand movement using kinect? I've tried both Openni and Microsoft sdk to track hand. On both of them, there are lots of jitters and inaccurate movement of joints.

Here is an example video of kinect fruit ninja: Example Video

On that video, there are no jitters and inaccuracy and also it's tracking the fast hand movements.

What am I missing? Is there any kinds of kinect hardware versions or types which I should look into.


回答1:


My best guess is that Fruit Ninja applies some sort of smoothing at some point. What you're seeing in that video is almost certainly not the raw data they're getting from the Kinect. The data from the Kinect will always have some kind of jitter; real-world sensor data almost always does. You'll need to smooth it - exactly how to do that depends on the application; it could be something simple like modelling a kind of damping and/or inertia on the point that's being moved by the hand (which is what I suspect Fruit Ninja is doing), or you could look at something like a Kalman filter for a robust (but more computationally-intensive) way to reduce the noise in your sensor readings.



来源:https://stackoverflow.com/questions/16171730/kinect-fast-hand-tracking-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!