• 大小: 3.69MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-10-28
  • 语言: 其他
  • 标签: Opencv  

资源简介

Opencv中文网Yu老师的人脸识别VS2015工程,opencv环境自己配置,Release下有可执行文件。

资源截图

代码片段和文件信息

/*
The MIT License (MIT)

Copyright (c) 2015-2017 Shiqi Yu
shiqi.yu@gmail.com

Permission is hereby granted free of charge to any person obtaining a copy
of this software and associated documentation files (the “Software“) to deal
in the Software without restriction including without limitation the rights
to use copy modify merge publish distribute sublicense and/or sell
copies of the Software and to permit persons to whom the Software is
furnished to do so subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY KIND EXPRESS OR
IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER
LIABILITY WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING FROM
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*  API接口函数说明
int * facedetect_multiview( unsigned char * gray_image_data int width int height int step
float scale
int min_neighbors
int min_size
int max_size=0);
/*API
1.it can detect side view faces but slower than facedetect_frontal().
facedetect_multiview
2.it‘s fast but cannot detect side view faces
facedetect_frontal
3.it can detect side view faces better but slower than facedetect_multiview().
facedetect_multiview_reinforce
4.it can detect faces with bad illumination.
facedetect_frontal_surveillance
*/
#include 
#include 
#include “facedetect-dll.h“

//#pragma comment(lib“libfacedetect.lib“)
#pragma comment(lib“libfacedetect-x64.lib“)

//define the buffer size. Do not change the size!
#define DETECT_BUFFER_SIZE 0x20000
using namespace cv;

int main(int argc char* argv[])
{
//if (argc != 2) 
//{
// printf(“Usage: %s \n“ argv[0]);
// return -1;
//}

while (1)
{
Mat gray image dstImage;
//load an image and convert it to gray (single-channel)
/*  image = imread(argv[1]);*/
//image = imread(“00.jpeg“);// keliamoniz1.jpg  face.jpeg
//if (image.empty())
//{
// fprintf(stderr “Can not load the image file %s.\n“ argv[1]);
// return -1;
//}
VideoCapture capture(0);    //从摄像头读入视频
capture >> image;

//namedWindow(“原图“ CV_WINDOW_AUTOSIZE);
//imshow(“原图“ image);

cvtColor(image gray CV_BGR2GRAY);//转化为灰度图

equalizeHist(gray gray);//直方图均衡化,增加对比度方便处理

int * pResults = NULL;
//pBuffer is used in the detection functions.
//If you call functions in multiple threads please create one buffer for each thread!
unsigned char * pBuffer = (unsigned char *)malloc(DETECT_BUFFER_SIZE); //动态内存分配
if (!pBuffer)
{
fprintf(stderr “Can no

评论

共有 条评论