jmasterx
jmasterx

Reputation: 54123

Using OpenCV to detect a finger tip instead of a face

I'm using the facedetect example and going from there. Right now it only detects faces. Could someone point me in the direction to detect finger tips. Thanks

Upvotes: 3

Views: 4747

Answers (3)

Keshan
Keshan

Reputation: 14677

http://opencv-users.1802565.n2.nabble.com/finger-tip-extraction-td3870910.html

i was also looking for that. i am going to implement the above one.. :) i think it will help you as well..

Cheers !

Upvotes: 1

gk.
gk.

Reputation: 26

Put a simple bright fluorescent sticker on the finger tip with a black dot in center or something like that. or even fashion a finger cap with a pattern printed on it which can be easily differentiated by the camera and your problem is very much solved.

Upvotes: 1

Chris
Chris

Reputation: 1562

You could use cvFindContours and then check each contour to see if it could be a finger tip and go from there.

It might be easier if you do some pre-processing of the image so that the finger tips stand out, for example mask out colors that don't match the fingers.

Upvotes: 1

Related Questions