Welcome![Sign In][Sign Up]
Location:
Search - cvHaarDetectObjects

Search list

[Special Effectshaar

Description: 利用级联的Haar分类其寻找检测目标。核心函数cvHaarDetectObjects使用针对某目标物体的级联分类器在图像中找到包含目标物体的矩形区域,并将这些区域作为一系列的矩形框返回。
Platform: | Size: 179041 | Author: 孔守斌 | Hits:

[2D Graphic 人脸识别

Description: opencv cvHaarDetectObjects Haar 教学 应用 HaarDetectObjects 人脸识别 eyes detection
Platform: | Size: 1983 | Author: vul3xl3cj3 | Hits:

[Special Effectshaar

Description: 利用级联的Haar分类其寻找检测目标。核心函数cvHaarDetectObjects使用针对某目标物体的级联分类器在图像中找到包含目标物体的矩形区域,并将这些区域作为一系列的矩形框返回。-Haar cascade classification using its search for target detection. CvHaarDetectObjects core function for a target object using the cascade classifier found in the image of the rectangle that contains the object region, and these regions as a series of rectangular box to return.
Platform: | Size: 179200 | Author: 孔守斌 | Hits:

[Special EffectsHaarFaceDetect

Description: This program is the haar opencv face detector slightly modified for ease of use There are command line options available to avoid the need to use the gui (see facedetect.cpp for the command line option format This program needs fltk installed. It can be downloaded online. The standard facedetect.cpp works at one scale. Our facedetect pyarmids the image up and down to allow processing at more scales. This can also be achieved via the cvHaarDetectObjects function. This program has only been tested with uncompressed avi files
Platform: | Size: 83968 | Author: 陈忠翔 | Hits:

[Special EffectsFaceDetection

Description: 本程序使用OpenCV中提供的“haarcascade_frontalface_alt.xml”文件存储的目标检测分类,用cvLoad函数载入后,进行强制类型转换。OpenCV中提供的用于检测图像中目标的函数是cvHaarDetectObjects,该函数使用指针对某目标物体(如人脸)训练的级联分类器在图象中找到包含目标物体的矩形区域,并将这些区域作为一序列的矩形框返回。分类器在使用后需要被显式释放,所用的函数为cvReleaseHaarClassifierCascade。-face detection OpenCV
Platform: | Size: 1992704 | Author: | Hits:

[Special EffectsDetectEyes

Description: 运用C++检测人眼, 2)用opencv中检测人脸、眼睛、嘴巴等都是用的CascadeClassifier分类器,具体使用时可以使用C的函数,也可以使用opencv中使用C++封装好的类。下面是它们检测目标时的函数形式(从opencv官网复制的) C: CvSeq* cvHaarDetectObjects(const CvArr* image, CvHaarClassifierCascade* cascade, CvMemStorage* storage, double scale_factor=1.1, int min_neighbors=3, int flags=0, CvSize min_size=cvSize(0,0), CvSize max_size=cvSize(0,0) ) C++: void CascadeClassifier::detectMultiScale(const Mat& image, vector<Rect>& objects, double scaleFactor=1.1, int minNeighbors=3, int flags=0, Size minSize=Size(), Size maxSize=Size()) 这两者最大的区别在于,用C封装的函数要自己手动分配内存,而用C++的形式则不用自己去分配内存,这就是很多同学在网上找到的代码有些要分配内存,有些又不用分配内存的原因。显然C++的形式更简洁,所以我下面的代码也是用的C++的函数。- Detected with opencv face, eyes, mouth, etc. are used CascadeClassifier classification, you can use C functions specific use, you can use opencv use C++ classes packaged. Here is the form of the function when they detect target (copied the opencv official website)
Platform: | Size: 2655232 | Author: 刘卓 | Hits:

[OpenCVcvHaarDetectObjects

Description: 基于openCV的人脸检测Demo,级联分类器在openCV中找(opencv\sources\data\haarcascades)。(Face detection Demo based on openCV)
Platform: | Size: 109568 | Author: 我不抽烟 | Hits:

CodeBus www.codebus.net