Facial Recognition with C#

Started by
2 comments, last by Oolala 10 years, 8 months ago

Hello, I was wondering if anyone one knows where I can find some tutorials on creating a simple facial recognition software with C#.

Advertisement

You should probably first know that facial recognition is not something that I would classify as "simple."

However, I would recommend you start looking into some of the methods such as eigenfaces.

This might help: http://www.face-rec.org/algorithms/PCA/jcn.pdf

Eigenfaces are probably the easiest method for you to implement.

Thanks for you the information, and I know that it isn't simple I just didn't need some overly complicated CIA type recognition. c:

If you just want to get something running, compile OpenCV and make calls into it from C# via the mechanisms they have for invoking non-managed functions. Might need to write a wrapper here and there, but it won't be too bad.

OpenCV has this stuff already, and it's robust & heavily tested.

This topic is closed to new replies.

Advertisement