Real Time Color Based Object Tracking

This is my first attempt on Real Time Color Based Object Tracking/Recognition from a C# application I've build using AVICap.
The technique is very simple and very slow but it describes the basic idea... I use avicap32.dll to interact with webcam, grabbing the frames and represent them in a new picture box. After that the program scan every new picture-frame to track the position of a constructed RGB palette based on the sampling pixel.

There is also some other more sophisticated methods which applies image filtering like thresholding or bluring but it's still under -a lot of- development and I don't want to go further yet. Probably I won't even bother to implement.

Source code Download.