• 大小: 7.21M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 算法  人脸检测  

资源简介

这是利用opencv实现的基于haar特征的adaboost人脸检测算法,使用VS平台,亲身实践可以使用,将图片放在该文件夹目录下,修改代码中图片名称与你所放图片名称一致就可以对图片中的人脸进行检测。使用时,确保你安装了VS和opencv(有编译好的库,只需解压到某一目录下即可,通过路径的设置去调用它),注意根据自己的opencv版本,修改程序的资源库。

资源截图

代码片段和文件信息

// facedetection.cpp : 定义控制台应用程序的入口点。
//
#include “stdafx.h“
#include “cv.h“
#include “highgui.h“
#include  
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
 
#ifdef _EiC
#define WIN32
#endif
 
static CvMemStorage* storage = 0;
static CvHaarClassifierCascade* cascade = 0;
 
void detect_and_draw( IplImage* image );
 
const char* cascade_name =
    “haarcascade_frontalface_alt.xml“;
/*    “haarcascade_profileface.xml“;*/
 
int main( int argc char** argv )
{
    CvCapture* capture = 0;
    IplImage *frame *frame_copy = 0;
    int optlen = strlen(“--cascade=“);
    const char* input_name;
 
    if( argc > 1 && str

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-04-06 23:56  facedetection\
     目录           0  2013-04-06 23:56  facedetection\Debug\
     文件       33792  2013-04-04 16:44  facedetection\Debug\facedetection.exe
     文件      593928  2013-04-04 16:44  facedetection\Debug\facedetection.ilk
     文件     1707008  2013-04-04 16:44  facedetection\Debug\facedetection.pdb
     目录           0  2013-04-06 23:57  facedetection\facedetection\
     文件    16470016  2013-04-04 16:45  facedetection\facedetection.sdf
     文件         906  2013-03-25 16:19  facedetection\facedetection.sln
     文件       10752  2013-04-04 16:45  facedetection\facedetection.suo
     目录           0  2013-04-06 23:56  facedetection\facedetection\Debug\
     文件        1698  2013-04-04 16:44  facedetection\facedetection\Debug\cl.command.1.tlog
     文件       22708  2013-04-04 16:44  facedetection\facedetection\Debug\CL.read.1.tlog
     文件        1168  2013-04-04 16:44  facedetection\facedetection\Debug\CL.write.1.tlog
     文件        2704  2013-04-04 15:32  facedetection\facedetection\Debug\facedetection.Build.CppClean.log
     文件         406  2013-04-04 15:33  facedetection\facedetection\Debug\facedetection.exe.embed.manifest
     文件         472  2013-04-04 15:33  facedetection\facedetection\Debug\facedetection.exe.embed.manifest.res
     文件         381  2013-04-04 16:44  facedetection\facedetection\Debug\facedetection.exe.intermediate.manifest
     文件          77  2013-04-04 16:44  facedetection\facedetection\Debug\facedetection.lastbuildstate
     文件        3749  2013-04-04 16:44  facedetection\facedetection\Debug\facedetection.log
     文件      143219  2013-04-04 16:44  facedetection\facedetection\Debug\facedetection.obj
     文件     1179648  2013-04-04 15:32  facedetection\facedetection\Debug\facedetection.pch
     文件         216  2013-04-04 15:32  facedetection\facedetection\Debug\facedetection_manifest.rc
     文件           2  2013-04-04 16:44  facedetection\facedetection\Debug\link-cvtres.read.1.tlog
     文件           2  2013-04-04 16:44  facedetection\facedetection\Debug\link-cvtres.write.1.tlog
     文件           2  2013-04-04 16:44  facedetection\facedetection\Debug\link.8180-cvtres.read.1.tlog
     文件           2  2013-04-04 16:44  facedetection\facedetection\Debug\link.8180-cvtres.write.1.tlog
     文件           2  2013-04-04 16:44  facedetection\facedetection\Debug\link.8180.read.1.tlog
     文件           2  2013-04-04 16:44  facedetection\facedetection\Debug\link.8180.write.1.tlog
     文件        3032  2013-04-04 16:44  facedetection\facedetection\Debug\link.command.1.tlog
     文件        6222  2013-04-04 16:44  facedetection\facedetection\Debug\link.read.1.tlog
     文件        1230  2013-04-04 16:44  facedetection\facedetection\Debug\link.write.1.tlog
............此处省略24个文件信息

评论

共有 条评论