一个简单的人脸检测程序
摘要:
基于OpenCV harr级联分类器的人脸及眼睛、鼻子、嘴巴检测程序。代码很简单:#include <opencv2/core/core.hpp>#include <opencv2/highgui//highgui.hpp>#include <opencv2/objdetect/objdetect.hpp>#include <string>#include <vector>using namespace std;int main() { cv::CascadeClassifier mFaceDetector; cv::CascadeC 阅读全文
posted @ 2012-03-07 21:30 迈克老狼2012 阅读(1898) 评论(0) 推荐(1) 编辑