资源简介
基于Gabor+PCA+SVM的性别识别.图像预处理。从人脸数据库提取人脸。为提取特征做准备
代码片段和文件信息
#include “opencv2/opencv.hpp“
#include “opencv2/imgproc/imgproc.hpp“
#include
#include
using namespace std;
using namespace cv;
int CropImageCount = 0; //裁剪出来的样本图片个数
string face_cascade_name =“D:\\Program Files\\opencv\\sources\\data\\haarcascades\\haarcascade_frontalface_alt.xml“;
CascadeClassifier face_cascade;
string window_name = “人脸识别“;
Mat detectAndDisplay( Mat);
int main()
{
Mat imageROI;
//image = imread(“pangzi.jpg“);
if( !face_cascade.load( face_cascade_name ) )
{
printf(“[error] 无法加载级联分类器文件!\n“);
return -1;
}
string ImgName;
char saveName[256]; //裁剪出来的负样本图片文件名
ifstream fin(“woman.txt“);//打开原始样本图片文件列表
//ifstream fin(“woman.txt“);//打开原始样本图片文件列表
//一行一行读取文件列表
while(getline(finImgName))
{
cout<<“处理:“< //ImgName = “D:\\Mycode\\man\\“ + ImgName+“.png“;
ImgName = “D:\\Mycode\\woman\\“ + ImgName+“.png“;
//cout< image= imread(ImgName);//读取图片
if(image.data ==0)
{
printf(“[error] 没有图片\n“);
return -5;
}
ROI= detectAndDisplay(image);
// cout< //sprintf(saveName“man%d.png“++CropImageCount);//生成裁剪出的样本图片的文件名
sprintf(saveName“woman%d.png“++CropImageCount);//生成裁剪出的样本图片的文件名
imwrite(saveName ROI);//保存文件
}
waitKey(0);
return 4;
}
Mat detectAndDisplay( Mat frame)
{
std::vector faces;
Mat frame_grayROI;
frame_gray= frame;
cvtColor( frame frame_gray CV_BGR2GRAY );
equalizeHist( frame_gray frame_gray );
face_cascade.detectMultiScale( frame_gray faces 1.1 2 0|CV_HAAR_SCALE_IMAGE Size(30 30) );
for( int i = 0; i < faces.size(); i++ )
{
Point center( faces[i].x + faces[i].width*0.5 faces[i].y + faces[i].height*0.5 );
// ellipse( frame center Size( faces[i].width*0.5 faces[i].height*0.5) 0 0 360 Scalar( 255 0 255 ) 4 8 0 );
rectangle(frame //图像.
faces[i].tl() //矩形的一个顶点。
faces[i].br() //矩形对角线上的另一个顶点
Scalar(0 255 0) //线条颜色 (RGB) 或亮度(灰度图像 )(grayscale image)
3); //组成矩形的线条的粗细程度。取负值时(如 CV_FILLED)函数绘制填充了色彩的矩形
ROI=frame_gray(Rect(faces[i].tl().xfaces[i].tl().yfaces[i].widthfaces[i].height));
resize(ROIROISize(2118)00CV_INTER_LINEAR);
}
//namedWindow(“qq“2);
//imshow( “qq“ ROI );
// imshow( window_name frame );
return ROI;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 107520 2015-12-26 17:08 face_cut\Debug\face_cut.exe
文件 1179576 2015-12-26 17:08 face_cut\Debug\face_cut.ilk
文件 1911808 2015-12-26 17:08 face_cut\Debug\face_cut.pdb
文件 175113 2015-12-13 19:37 face_cut\face_cut\Debug\BrowseDir.obj
文件 5222 2015-12-26 17:08 face_cut\face_cut\Debug\cl.command.1.tlog
文件 99568 2015-12-26 17:08 face_cut\face_cut\Debug\CL.read.1.tlog
文件 3404 2015-12-26 17:08 face_cut\face_cut\Debug\CL.write.1.tlog
文件 445019 2015-12-13 19:37 face_cut\face_cut\Debug\detect.obj
文件 229362 2015-12-13 19:37 face_cut\face_cut\Debug\detection.obj
文件 406 2015-12-14 10:21 face_cut\face_cut\Debug\face_cut.exe.em
文件 472 2015-12-14 10:21 face_cut\face_cut\Debug\face_cut.exe.em
文件 381 2015-12-26 17:08 face_cut\face_cut\Debug\face_cut.exe.intermediate.manifest
文件 57 2015-12-26 17:08 face_cut\face_cut\Debug\face_cut.lastbuildstate
文件 3354 2015-12-26 17:08 face_cut\face_cut\Debug\face_cut.log
文件 713 2015-12-13 19:37 face_cut\face_cut\Debug\face_cut.vcxprojResolveAssemblyReference.cache
文件 0 2015-12-13 19:37 face_cut\face_cut\Debug\face_cut.write.1.tlog
文件 206 2015-12-13 19:46 face_cut\face_cut\Debug\face_cut_manifest.rc
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
文件 2 2015-12-26 17:08 face_cut\face_cut\Debug\li
............此处省略103个文件信息
- 上一篇:ssh注册登录
- 下一篇:基于Gabor+PCA+SVM的性别识别(3)
相关资源
- 基于Gabor+PCA+SVM的性别识别(3)
- PcapAnalyzer(v6)
- wireshark-20190407 网络抓包及分析工具
- PCANet代码
- AP3030DN瘦AP刷胖AP固件FatAP3X30XN_V200R00
- nRF52840 DK 开发板硬件资料及使用手册
- Statistical Shape Analysis
- 基于winpcap的网络嗅探器
- 说话人识别和说话人性别识别SDK
- PCap01电容测试芯片中文技术手册.pdf
- S7comm协议模拟器与协议解析文档以及
- 基于PCA-HOG的人体检测代码-包括训练,
- 人脸性别识别数据库
- IPCAM sdk 网络摄像机组件属性和接口(
- 两个基于winpcap开发的网络抓包分析工
- 手写数字识别PCA算法
- PCA+KNN人脸表情识别
- 性别识别数据库—CAS-PEAL.zip
- 基于WinPcap的抓包软件设计
- canoco数据分析CCA、PCA、RDA
- VS2012 Qt5 winpcap win64 抓包工具 http协议
- AP6010DN-AGN-FAT-V200R005C10SPCa00.zip
- 基于opencv的性别识别
- peak pcan_usb 驱动程序
- PCAN window driver
- Gabor滤波的实现
- FPGA应用开发入门与典型_源代码
- Haar人脸检测+SVM+PCA人脸识别
- PCAP02官方开发板配套软件PCAP01 PCAP04
- simca14-part 1 demo版本
评论
共有 条评论