Using webcams to track gestures

I wanted to develop a program that uses a webcam to track four colors and which will be on my index finger and the finger of my hands, and in accordance with the gestures of my hand, the computer will interpret these gestures and execute the command. For example, if I have a website open, all I have to do is hold my fingers and the web page will increase. I need a stackoverflow community advice on where to start and if I have any tips for me. Thanks in advance.

+6
algorithm gesture-recognition gesture
source share
5 answers

You can see how Johnny Chung Lee works with Wii Remote:

http://www.youtube.com/watch?v=0awjPUkBXOU

You can use your code in the Wiimote library:

http://www.codeplex.com/WiimoteLib

Another angle might be the Adhone library:

http://www.codeproject.com/KB/audio-video/Motion_Detection.aspx

Code: http://code.google.com/p/aforge/

+4
source share

Something really similar already exists:

http://incubator.quasimondo.com/flash/minority_cube.php

+2
source share

You will definitely want to use OpenCV in one form or another.

+1
source share

Take a look at OpenCV, find OpenCV recognition recognition

0
source share

I think using motion tracking in the openCV examples can achieve similar effects, as the minority cube has demonstrated.

0
source share

All Articles