Hongseo Ahn's Blog Solution Architect

Hand Gesture Recognition

Source : https://github.com/Honser/Hand-Gesture-Recognition


Objectives

  • Understand how OpenCV operate.
  • Make it detect and count number of fingers.
  • Simulate the program.

Operation

  1. Capture the video frame.
  2. Convert the frame into gray scale.
  3. Segment the hand in the image using color based method.
  4. Obtain the binary image of the hand portion after segmentation.
  5. Use morphological thinning on binary image.
  6. Count the number of end points in the thinned image.
  7. Display it.

Simulation Result

result

result