Direction of hand movements

asked 2014-07-30 10:30:21 -0600

YassCR gravatar image

updated 2014-07-30 10:38:24 -0600

I have already implemented hand gesture recognition using OpenCv for android .

I am looking a solution for a hand direction in real-time (eg detect movement from left to right or vice versa using camera)in Android using OpenCV. I went through many links but did not find anything that was done using OpenCV Android SDK.

edit retag flag offensive close merge delete

Comments

Hmm since you are already doing gesture recognition you know exactly where your hand is. Since you can remember where it was 3-4 frames ago you can define what movement the center point does. I think you got the solution right there. This calculation of distance and direction between two integer coordinates should be quite simple and perfectly doable in real time.

StevenPuttemans gravatar imageStevenPuttemans ( 2014-07-31 03:10:05 -0600 )edit
1

Thank you for the response , i will try to implement this idea.

YassCR gravatar imageYassCR ( 2014-08-03 22:30:17 -0600 )edit

What you would do in that case is basically implement a very basic Kalman tracking principle.

StevenPuttemans gravatar imageStevenPuttemans ( 2014-08-04 02:03:42 -0600 )edit