Hacker News new | ask | show | jobs
by ajray 5612 days ago
OpenCV is my favorite Computer Vision (CV) library. http://opencv.willowgarage.com/wiki/

Face detection is a special case of Haar-wavelets, which are essiantially recognitions that can be 'trained' by reinforcing with positive and negative images.

OpenCV comes with some really well pre-trained Haar-wavelets for recognizing faces. http://opencv.willowgarage.com/wiki/FaceDetection

1 comments

Cool, thank you.