我想检测眼睛只属于脸部区域内,因此我做了一些小的改动的代码:
if( cascade )
{
double t = (double)cvGetTickCount();
CvSeq* faces = cvHaarDetectObjects( small_img, cascade, storage,
1.1, 2, 0|CV_HAAR_DO_CANNY_PRUNING,
cvSize(30, 30) );
t = (double)cvGetTickCount() - t;
printf( "detection time = %gms\n", t/((double)cvGetTickFrequency()*1000.) );
for( i = 0; i < (faces ? faces->total : 0); i++ )
{
CvRect* r = (CvRect*)cvGetSeqElem( faces, i );
CvMat small_img_roi;
CvSeq* nested_objects;
CvPoint center;
CvPoint center_1;
CvScalar color = colors[i%8];
int radius,radius_1;
center.x = cvRound((r->x + r->width*0.5)*scale);
center.y = cvRound((r->y + r->height*0.5)*scale);
radius = cvRound((r->width + r->height)*0.25*scale);
cvCircle( img, center, radius, color, 3, 8, 0 );
if( !nested_cascade )
continue;
else
printf("not continuing!\n");
cvGetSubRect( small_img, &small_img_roi, *r );
nested_objects = cvHaarDetectObjects( &small_img_roi, nested_cascade, storage,
1.1, 2, 0
|CV_HAAR_DO_CANNY_PRUNING, ,
cvSize(0, 0) );
for( j = 0; j < (nested_objects ? nested_objects->total : 0); j++ )
{
printf("start of nested objects loop!\n");
CvRect* nr = (CvRect*)cvGetSeqElem( nested_objects, j );
center_1.x = cvRound((r->x + nr->x + nr->width*0.5)*scale);
center_1.y = cvRound((r->y + nr->y + nr->height*0.5)*scale);
radius_1 = cvRound((nr->width + nr->height)*0.25*scale);
if(center_1.x+radius_1<center.x+radius&& center.x-radius<center_1.x-radius_1 && center_1.y<center.y+radius&& center.y<center_1.y+radius )
{
cvCircle( img, center_1, radius_1, color, 3, 8, 0 );
}
else
printf("cant find thy eyes!\n");
}
然而,这是不是很成功。 在尝试调试它,我尝试过评论,他们画的脸,结果没有圈都被画出的圆的部分。 这使我也许与嵌套对象的部分是不工作的结论。 因此,我实现了几个printfs输出的代码和监控控制台。 但观察控制台后,我来到了,确实部分嵌套的对象是不工作的结论。 但是,我,为什么会是这样的嵌套对象的部分是类似于人脸检测部分依然毫无头绪。 因此,如果面部检测单元的作品,应该不是嵌套对象代码的工作吗?
(> _ <)