gpt4 book ai didi

c++ - opencv 3.0.0 c++ detectMultiScale 检测到大量的人脸

转载 作者:太空宇宙 更新时间:2023-11-04 14:31:18 25 4
gpt4 key购买 nike

我刚开始使用 OpenCV,我的设置是:OpenCV 3.0 Visual Studio 2013

我的问题是,我试图检测图像中的人脸,但函数调用 detectMultiScale 检测到很多人脸。

#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>

#include <iostream>
#include <stdio.h>

using namespace std;
using namespace cv;

int main(int argc, const char** argv)
{
//create the cascade classifier object used for the face detection
CascadeClassifier face_cascade;
//use the haarcascade_frontalface_alt.xml library
if (!face_cascade.load("haarcascade_frontalface_alt.xml"))
{
printf("Unable to load classifier XML");
return 0;
}

//setup video capture device and link it to the first capture device
//VideoCapture captureDevice;
//captureDevice.open(0);

//setup image files used in the capture process
Mat captureFrame;
Mat grayscaleFrame;

captureFrame = imread("Test.png", IMREAD_COLOR);

if (captureFrame.empty()) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl;
return 0;
}

//create a window to present the results
namedWindow("outputCapture", 1);

//create a loop to capture and find faces
while (true)
{
//capture a new image frame
//captureDevice >> captureFrame;

//convert captured image to gray scale and equalize
cvtColor(captureFrame, grayscaleFrame, CV_BGR2GRAY);
equalizeHist(grayscaleFrame, grayscaleFrame);

//create a vector array to store the face found
std::vector<Rect> faces;

//find faces and store them in the vector array
face_cascade.detectMultiScale(grayscaleFrame, faces, 1.1, 3, 0 , Size(30, 30));

////draw a rectangle for all found faces in the vector array on the original image
//for (int i = 0; i < faces.size(); i++)
//{
// Point pt1(faces[i].x + faces[i].width, faces[i].y + faces[i].height);
// Point pt2(faces[i].x, faces[i].y);

// rectangle(captureFrame, pt1, pt2, cvScalar(0, 255, 0, 0), 1, 8, 0);
//}

//print the output
imshow("outputCapture", captureFrame);

//pause for 33ms
waitKey(33);
}

return 0;
}

我想知道我的设置是否正确,或者 CascadeClassifier 是否只是没有停止检测。当我查看数据时,其中一些数据位于正确的位置,但有 268158156 个条目时它崩溃了。

欢迎任何建议

最佳答案

您可能想在调用 face_cascade.detectMultiScale 后检查“面”的大小。我有时注意到,“面孔”的大小非常大,但实际上只有前几个条目是有效的。其余部分的宽度或高度通常为 0,在这种情况下,您将需要遍历“faces”的每个条目,并在最后一个有效条目之后停止。

关于c++ - opencv 3.0.0 c++ detectMultiScale 检测到大量的人脸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30698966/

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