Hand Gesture Recognition
08 May 2015
Objectives
- Understand how OpenCV operate.
- Make it detect and count number of fingers.
- Simulate the program.
Operation
- Capture the video frame.
- Convert the frame into gray scale.
- Segment the hand in the image using color based method.
- Obtain the binary image of the hand portion after segmentation.
- Use morphological thinning on binary image.
- Count the number of end points in the thinned image.
- Display it.