2

所以这是我用来检测轮廓的代码:

IplImage* DetectAndDrawQuads(IplImage* img)

{
CvSeq* contours;
CvSeq* result;
CvMemStorage *storage = cvCreateMemStorage(0);

IplImage* ret = cvCreateImage(cvGetSize(img), 8, 3);
IplImage* temp = cvCreateImage(cvGetSize(img), 8, 1);

cvCvtColor(img, temp, CV_BGR2GRAY);

cvFindContours(temp, storage, &contours, sizeof(CvContour), CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE, cvPoint(0,0));

while(contours)
{
    result = cvApproxPoly(contours, sizeof(CvContour), storage, CV_POLY_APPROX_DP, cvContourPerimeter(contours)*0.10, 0); //*0.2


    if((result->total) == 4)  
    {
        CvPoint *pt[4];
        for(int i=0;i<4;i++)
            pt[i] = (CvPoint*)cvGetSeqElem(result, i);

            cvLine(ret, *pt[0], *pt[1], cvScalar(255));
            cvLine(ret, *pt[1], *pt[2], cvScalar(255));
            cvLine(ret, *pt[2], *pt[3], cvScalar(255));
            cvLine(ret, *pt[3], *pt[0], cvScalar(255));


    }

    contours = contours->h_next;

}

cvReleaseImage(&temp);
cvReleaseMemStorage(&storage);

return ret;
}


int main()

{

    IplImage* img = cvLoadImage("D:\\Database\\eye2.jpg");
IplImage* contourDrawn = 0;
cvNamedWindow("original");
cvShowImage("original", img);

contourDrawn = DetectAndDrawQuads(img);
cvNamedWindow("contours");
cvShowImage("contours", contourDrawn);

cvWaitKey(0);
return 0;
}

这是我用来测试程序的图片:输入

我试图将轮廓作为寻找输入面部面部表情的初步步骤。这是我尝试运行程序时的结果(原始[左] 和输出[右]): 结果

正如您所看到的,二进制图像中似乎存在一些噪声(我实际上在将其输入到我的查找轮廓程序(上面的代码)之前对其进行了预处理)。

我的问题是:



  1. 如何找到轮廓中的点(例如,顶部、底部、中心、最左侧和最右侧 --> 进行几何计算以确定面部表情的基本点)。

如果你能帮助我,非常感谢。到目前为止,这是我可以生成的关于寻找轮廓的最佳输出。另外,如果您能帮助我更准确地提取轮廓,那将不胜感激。谢谢你。:)

4

1 回答 1

2
cvPoint rightMost = (0, 0); 
cvPoint leftMost = (gray->width, 0);
cvPoint bottom =  (0, gray->height);
cvPoint top = (0, 0);;   
for( CvSeq* current = contours; current != NULL; current = current->h_next )
{
    for( int i = 0; i < current->total; i++ )
    {
         CvPoint* pt = (CvPoint*)cvGetSeqElem( current, i );
         int pixVal = (int)(gray->imageData + pt->x * gray->widthStep)[pt->y];
        //find the point, which coordinate X is the biggest
         if( pt->x > rightMost ) 
         {
            rightMost->x = pt->x;  
            rightMost->y = pt->y;
         }  
        //find the point, which coordinate X is the smallest
         if( pt->x < leftMost ) 
         {
            leftMost->x = pt->x;  
            leftMost->y = pt->y;
         }  
        //find the point, which coordinate Y is the biggest
         if( pt->y > top )
         {
            top->x = pt->x;  
            top->y = pt->y;
         }    
        //find the point, which coordinate Y is the smallest
         if( pt->x < bottom ) 
         {
            bottom->x = pt->x;  
            bottom->y = pt->y;
         }  

    }
}
cvPoint ptCenter(cvRound(( rightMost + leftMost ) / 2), ( top + bottom ) / 2 );

我没有尝试过这段代码,但我认为它会有所帮助!

于 2013-01-29T12:45:15.130 回答