繁体   English   中英

人脸检测OpenCV + Qt + cvMat

[英]face detect OpenCV + Qt + cvMat

我正在尝试将旧的opencv人脸检测代码从使用IplImage结构迁移到使用opencv的Mat类。

问题在于,当没有Qt代码时,代码就可以正常工作。 这是Codelite中的蛮力C ++代码:

void detectFace(Mat& img)
{
    std::vector<Rect> faces;
    Mat gray;
    cvtColor(img, gray, CV_BGR2GRAY);
    equalizeHist(gray, gray);
    // Face detect
    face_cascade.detectMultiScale(gray, faces, 1.1, 2,1 | CV_HAAR_SCALE_IMAGE, Size(100,100));
for (unsigned int i = 0; i < faces.size(); i++)
{
    //face detect rectangle
    Point upperLeftFace(faces[i].x, faces[i].y);
    Point lowerRightFace(faces[i].x+faces[i].width, faces[i].y+faces[i].height);
    rectangle(/*Matrice*/img, /*Rect*/upperLeftFace, /*Rect*/lowerRightFace, /*BGR Color*/Scalar(255, 255,0), /*Line height*/1, /*line type*/8);
}

//Show window
namedWindow("Alexey Eye", CV_WINDOW_AUTOSIZE);
imshow("Alexey Eye", img);
}

这是我使用qt时的代码:

void Neski::m_faceDetect()
{
    *att_CamCapture >> att_MatCamera;
    std::vector<Rect> faces;
    Mat grayMat;
    cvtColor(att_MatCamera, grayMat, CV_BGR2GRAY);
    equalizeHist(grayMat, grayMat);
    // Face detect
    face_cascade.detectMultiScale(grayMat, faces, 1.1, 2,1 | CV_HAAR_SCALE_IMAGE, Size(150,150));
    for (unsigned int i = 0; i < faces.size(); i++)
    {
        //face detect rectangle
        Point upperLeftFace(faces[i].x, faces[i].y);
        Point lowerRightFace(faces[i].x+faces[i].width, faces[i].y+faces[i].height);
        rectangle(/*Matrice*/att_MatCamera, /*Rect*/upperLeftFace, /*Rect*/lowerRightFace, /*BGR Color*/Scalar(255, 255,0), /*Line height*/1, /*line type*/8);
    }
    cvtColor(att_MatCamera, att_MatCamera, CV_BGR2RGB);
    QImage att_QImageCamera((uchar*) att_MatCamera.data, att_MatCamera.cols, att_MatCamera.rows, att_MatCamera.step, QImage::Format_RGB888);
    *att_PixImageCamera = QPixmap::fromImage(att_QImageCamera.scaled(640, 480),Qt::AutoColor);
    att_ui->lab_image->setPixmap(*att_PixImageCamera);
}

两种代码几乎相同,但是我迷失了为什么在启动程序时为什么没有人脸识别功能。 它的确显示了一个来自网络摄像头的视频,但没有面部检测矩形。

有人有什么想法吗?

经过数小时的睡眠和崭新的想法,我开始工作了。 这是一个愚蠢的错误,我忘了加载用于检测面部的级联。 这就是为什么没有错误且没有矩形的原因。

face_cascade.load(face_cascade_name);

只需将其放在行之前:

face_cascade.detectMultiScale(grayMat, faces, 1.1, 2,1 | CV_HAAR.......

现在就可以了。 但是,仍然感谢您提供的出色网站。

这是最终结果的屏幕截图

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM