gpt4 book ai didi

c++ - PCA 如何在相机拍摄的图像上实现?

转载 作者:行者123 更新时间:2023-11-30 02:06:15 26 4
gpt4 key购买 nike

我已经在我的人脸识别项目中成功实现了人脸检测部分。现在我在图像中有一个人脸矩形区域。现在我必须在这个检测到的矩形区域上实现 PCA 以提取重要特征。我已经使用了实现示例面部数据库上的 PCA。我想知道我们如何将检测到的面部传递给实现 PCA 的函数?是我们传递矩形框吗?这是我的人脸检测代码。

#include "cv.h"
#include "highgui.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <math.h>
#include <float.h>
#include <limits.h>
#include <time.h>
#include <ctype.h>


// Create a string that contains the exact cascade name
const char* cascade_name =
"haarcascade_frontalface_alt.xml";
/* "haarcascade_profileface.xml";*/


// Function prototype for detecting and drawing an object from an image
void detect_and_draw( IplImage* image );

// Main function, defines the entry point for the program.
int main( int argc, char** argv )
{

// Create a sample image
IplImage *img = cvLoadImage("Image018.jpg");
if(!img)
{
printf("could not load image");
return -1;
}

// Call the function to detect and draw the face positions
detect_and_draw(img);

// Wait for user input before quitting the program
cvWaitKey();

// Release the image
cvReleaseImage(&img);

// Destroy the window previously created with filename: "result"
cvDestroyWindow("result");

// return 0 to indicate successfull execution of the program
return 0;
}

// Function to detect and draw any faces that is present in an image
void detect_and_draw( IplImage* img )
{

// Create memory for calculations
static CvMemStorage* storage = 0;

// Create a new Haar classifier
static CvHaarClassifierCascade* cascade = 0;

int scale = 1;

// Create a new image based on the input image
IplImage* temp = cvCreateImage( cvSize(img->width/scale,img->height/scale), 8, 3 );

// Create two points to represent the face locations
CvPoint pt1, pt2;
int i;

// Load the HaarClassifierCascade
cascade = (CvHaarClassifierCascade*)cvLoad( cascade_name, 0, 0, 0 );

// Check whether the cascade has loaded successfully. Else report and error and quit
if( !cascade )
{
fprintf( stderr, "ERROR: Could not load classifier cascade\n" );
return;
}

// Allocate the memory storage
storage = cvCreateMemStorage(0);

// Create a new named window with title: result
cvNamedWindow( "result", 1 );

// Clear the memory storage which was used before
cvClearMemStorage( storage );

// Find whether the cascade is loaded, to find the faces. If yes, then:
if( cascade )
{

// There can be more than one face in an image. So create a growable sequence of faces.
// Detect the objects and store them in the sequence
CvSeq* faces = cvHaarDetectObjects( img, cascade, storage,
1.1, 2, CV_HAAR_DO_CANNY_PRUNING,
cvSize(40, 40) );

// Loop the number of faces found.
for( i = 0; i < (faces ? faces->total : 0); i++ )
{
// Create a new rectangle for drawing the face
CvRect* r = (CvRect*)cvGetSeqElem( faces, i );

// Find the dimensions of the face,and scale it if necessary
pt1.x = r->x*scale;
pt2.x = (r->x+r->width)*scale;
pt1.y = r->y*scale;
pt2.y = (r->y+r->height)*scale;

// Draw the rectangle in the input image
cvRectangle( img, pt1, pt2, CV_RGB(255,0,0), 3, 8, 0 );
}
}

// Show the image in the window named "result"
cvShowImage( "result", img );

// Release the temp image created.
cvReleaseImage( &temp );
}

最佳答案

编辑:

只是为了通知任何访问此站点的人。我已经编写了一些示例代码来使用我的 libfacerec 库在视频中执行人脸识别:

原帖:

我假设您的问题如下。您已经使用了级联分类器 cv::CascadeClassifier与 OpenCV 一起来检测和提取图像中的人脸。现在您想对图像执行人脸识别。

您想使用特征脸进行人脸识别。所以你要做的第一件事就是从你收集的图像中学习特征脸。我重写了 Eigenfaces class让你更简单。要学习特征脸,只需将带有面部图像和相应标签(主题)的 vector 传递给 Eigenfaces::Eigenfaces。或 Eigenfaces::compute .确保所有图像的大小相同,您可以使用 cv::resize以确保这一点。

计算出特征脸后,您就可以从模型中获得预测结果。只需调用 Eigenfaces::predict在计算模型上。 main.cpp向您展示如何使用该类及其方法(用于图像的预测、投影、重建),这里是 how to get a prediction for an image .

现在我知道你的问题出在哪里了。您正在使用旧的 OpenCV C API。这使得很难与我编写的代码所用的新 OpenCV2 C++ API 接口(interface)。不要冒犯,但如果你想与我的代码接口(interface),你最好使用 OpenCV2 C++ API。我不能在这里提供学习 C++ 和 OpenCV2 API 的指南,OpenCV 附带了很多文档。一个好的开始是 OpenCV C++ 备忘单(也可在 http://opencv.willowgarage.com/ 获得)或 OpenCV 引用手册。

为了识别来自 Cascade Detector 的图像,我重复:首先用你想要识别的人学习特征脸模型,它在我的代码附带的示例中显示。然后您需要获得感兴趣区域 (ROI),即人脸,级联检测器输出的矩形。最后,您可以从 Eigenfaces 模型中获得 ROI 的预测(您已经在上面计算了它),它显示在我的代码附带的示例中。您可能必须将图像转换为灰度,仅此而已。就是这样。

关于c++ - PCA 如何在相机拍摄的图像上实现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8938207/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com