views:

886

answers:

2

I need an open-source Video Gesture Recognition .NET Library/API (in C#). We have a web cam... we move a hand and it causes some events...

So I need motion detection for navigation lib/api...

Where can I find such a library?

+5  A: 

I've heard that AForge is pretty awesome (check out the AForge.Vision.Motion namespace).

A quick Google query gave me this: Video Hands Gesture Recognition in C#

This is also interesting: Video Motion Detection Algorithms in C#

Josh Stodola
+2  A: 

OpenCV might be an option. Although it's a C library, there are C# bindings available. It's currently the most complete computer vision library out there (IMO).

joemoe