OpenCV predict()与detectMultiScale()

taor4pac  于 2023-10-24  发布在  其他
关注(0)|答案(1)|浏览(104)

我正在使用OpenCV做一些面部,性别和年龄检测。我有一堆图像我用来训练模型,实际上我目前有以下内容:

Ptr<cv::face::FaceRecognizer> model = cv::face::LBPHFaceRecognizer::create(9, 9);
std::vector<int> labels;
std::vector<std::string> imageFileNames;

for (int currImageIndex = 0; currImageIndex < imageFileNames.size(); currImageIndex++)
{
    cv::Mat currMatrix;
    std::string currentFileName = imageFileNames[currImageIndex];
    std::string gender;
    int currID = -1;

    //Save the image and the corresponding ID to the list(s).
    currMatrix = imread(currentFileName , CV_LOAD_IMAGE_GRAYSCALE);
    if (currMatrix.data != NULL)
    {
        images.push_back(currMatrix);
        labels.push_back(currID);
    }
}

model->train(images, labels);
model->write("C:\\temp.xml");

然后使用temp.xml启发式,我预测生成器如下:

gendermodel->predict(currMat, predictedLabel, conf);

然而,我遇到了这个使用detectMultiScale()"Cascade Classifier"的实现。有什么区别?使用Cascade Classifier与我目前使用的方式相比是否有性能优势?detectMultiScale()predict()更好吗?

ncecgwcz

ncecgwcz1#

CascadeClassifier::detectMultiScale函数用于对象检测。它返回一个std::vector<cv::Rect>类型的变量,其中包含检测到的对象的边界矩形。
FaceRecognizer::predict函数用于对象分类,返回输入图像的类标签和预测对象的置信度。

相关问题