7

请一些专家解释一下我们是否可以使用cvHaarDetectObjects()方法来检测正方形并获取宽度和高度?我找到了一个使用这种方法进行人脸检测的代码,但我需要知道我是否可以将它用于矩形检测。

    String src="src/squiredetection/MY.JPG";
    IplImage grabbedImage = cvLoadImage(src);
    IplImage grayImage    = IplImage.create(grabbedImage.width(),  grabbedImage.height(), IPL_DEPTH_8U, 1);

        cvCvtColor(grabbedImage, grayImage, CV_BGR2GRAY);

        CvSeq faces = cvHaarDetectObjects(grayImage, cascade, storage, 1.1, 3, 0);//*
        for (int i = 0; i < faces.total(); i++) {
            CvRect r = new CvRect(cvGetSeqElem(faces, i));
            cvRectangle(grabbedImage, cvPoint(r.x(), r.y()), cvPoint(r.x()+r.width(), r.y()+r.height()), CvScalar.RED, 1, CV_AA, 0);
         /*   hatPoints[0].x = r.x-r.width/10;    hatPoints[0].y = r.y-r.height/10;
            hatPoints[1].x = r.x+r.width*11/10; hatPoints[1].y = r.y-r.height/10;
            hatPoints[2].x = r.x+r.width/2;     hatPoints[2].y = r.y-r.height/2;*/
          //  cvFillConvexPoly(grabbedImage, hatPoints, hatPoints.length, CvScalar.GREEN, CV_AA, 0);
        }

当我使用上述方法时,它会引发以下异常

OpenCV Error: Bad argument (Invalid classifier cascade) in unknown function, file C:\slave\WinInstallerMegaPack\src\opencv\modules\objdetect\src\haar.cpp, line 1036
Exception in thread "main" java.lang.RuntimeException: C:\slave\WinInstallerMegaPack\src\opencv\modules\objdetect\src\haar.cpp:1036: error: (-5) Invalid classifier cascade

    at com.googlecode.javacv.cpp.opencv_objdetect.cvHaarDetectObjects(Native Method)
    at com.googlecode.javacv.cpp.opencv_objdetect.cvHaarDetectObjects(opencv_objdetect.java:243)
    at squiredetection.Test2.main(Test2.java:52 I have put * on this line)

请提供简单的代码示例。

4

2 回答 2

6

cvHaarDetectObjects()不仅用于检测对象或形状,还取决于HaarCascade分类器。

如果您通过face haarcascade xml,那么它将返回一个人脸数组,或者也可以使用eye,nose等 HaarCascade XML 文件。您也可以haarcascade xml通过使用创建自己的正样本和负样本来进行自定义opencv_traincascade.exe

CvSeq faces = cvHaarDetectObjects(grayImage, classifier, storage,
                1.1, 3, CV_HAAR_DO_CANNY_PRUNING);

for (int i = 0; i < faces.total(); i++) {
   // its ok
}

opencv 文档的详细信息

对于矩形检测:

中有一个矩形检测的例子OpenCV,他们用它来检测棋盘中的正方形。查看squares.c..\OpenCV\samples\c\ 目录。

在 opencv 中查看这个棋盘检测示例

未知函数错误中的无效分类器级联意味着您传递的分类器格式不正确或缺少某些内容。检查您的分类器 xml 文件是否有效。

于 2012-06-28T10:42:41.093 回答
2

cvHaarDetectObjects返回在图像中检测到的多个人脸。您必须声明一个 CvSeq 数组来存储结果,而不仅仅是单个 CvSeq。

// 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) );

上面的代码是从这个站点提取的:

http://opencv.willowgarage.com/wiki/FaceDetection

于 2012-06-26T13:33:39.160 回答