2

我正在使用 Haar-Cascade 分类器来检测人脸。

我目前面临以下功能的一些问题:

void ImageManager::detectAndDisplay(Mat frame, CascadeClassifier face_cascade){


    string window_name = "Capture - Face detection";
    string filename;

    std::vector<Rect> faces;
    std::vector<Rect> eyes;
    Mat frame_gray;
    Mat crop;
    Mat res;
    Mat gray;
    string text;
    stringstream sstm;


    cvtColor(frame, frame_gray, COLOR_BGR2GRAY);
    equalizeHist(frame_gray, frame_gray);

    // Detect faces
    face_cascade.detectMultiScale(frame_gray, faces, 1.1, 2, 0 | CASCADE_SCALE_IMAGE, Size(30, 30));

    // Set Region of Interest
    cv::Rect roi_b;
    cv::Rect roi_c;

    size_t ic = 0; // ic is index of current element


    for (ic = 0; ic < faces.size(); ic++) // Iterate through all current elements (detected faces)  
    {

        roi_c.x = faces[ic].x;
        roi_c.y = faces[ic].y;
        roi_c.width = (faces[ic].width);
        roi_c.height = (faces[ic].height);



        crop = frame_gray(roi_c);

        faces_img.push_back(crop);

        rectangle(frame, Point(roi_c.x, roi_c.y), Point(roi_c.x + roi_c.width, roi_c.y + roi_c.height), Scalar(0,0,255), 2);


    }

    imshow("test", frame);
    waitKey(0);

    cout << faces_img.size();


}

相框是我要扫描的照片。

face_cascade 是分类器。

4

2 回答 2

8

在内部,CascadeClassifier 会进行多次检测,并将它们分组。

minNeighbours (在 detectMultiScale 调用中)是在大约同一个地方的检测数量,需要算作有效检测,因此将其从当前的 2 增加到大约 5 左右,直到您开始错过阳性。

于 2014-12-23T16:27:19.827 回答
0

作为对 berak 声明的补充,如果您不只在图像上做这些事情,它不仅是关于减少/增加 detectMultiScale 参数。您将面临不允许用户使用应用程序的性能问题。

性能问题依赖于错误计算。计算所需要的只是测试。如果您不想在不同的光照条件下获得最佳结果(因为这是依赖于视觉的信息),则必须先缩放输入数组,然后再将其作为参数发送给 detectMultiScale 函数。检测完成后,重新缩放到以前的大小(可以通过更改用作 detectMultiScale 参数的矩形大小来完成)。

于 2022-01-12T20:32:01.917 回答