Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the current state of hand gesture recognition in OpenCV?

I have seen great examples of being able to detect hand gestures (e.g. http://www.andol.info/hci/1661.htm) but recognising gestures and performing some action (e.g. manipulating on-screen objects) seems much harder.

Does anyone know of any examples?

Thanks!

share|improve this question
I recommand OPENNI + OPENCV + Kinect camera, which I think i more easy and accurate becasuse of the libaries of OPENNI and the extra depth information from kinect. go for kinect... – user2226360 Mar 30 at 4:48

2 Answers

up vote 3 down vote accepted

I think the only support in OpenCV for hand gesture recognition is exactly what Luca Del Tongo demonstrated in the video you linked to, namely cvConvexityDefects().

You might want to extract the hand mask using color-space filtering (as suggested in the video), and using ML classifiers for detecting the actual gesture. There have been several papers that have done this, though this is not currently implemented as-such in OpenCV.

share|improve this answer
2  
For anyone making an android app, it's in the java api under Imgproc called convexityDefects(): docs.opencv.org/java/org/opencv/imgproc/… – austin Mar 5 at 7:53

cvConvexityDefects() is the key step following the hand segmentation as done in andol.info/hci/1661.htm

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.