0

我想从相机中获取部分图像。我有这个代码。这段代码在相机上给了我矩形。我需要获取矩形包含图像。

 for(int i=0;i<(detectRect_face ? detectRect_face->total:0); i++ )
    {
        CvRect* r = (CvRect*)cvGetSeqElem(detectRect_face, i); 
        CvPoint pt1 = { r->x+20, r->y+20 }; 
        CvPoint pt2 = { r->x + r->width-20, r->y + r->height-10 }; 
        cvRectangle(frame, pt1, pt2, CV_RGB(255,0,0), 1,8, 0); 

         //I need to write here a method to get this rectangle include image.
    }
4

1 回答 1

1

您可以使用 cvSetImageROI 和 cvCopy 方法来裁剪图像。

IplImage *dst = // Prepare partition size image.
cvSetImageROI(frame, r);
cvCopy(frame, dst);
cvResetImageROI(frame);
于 2013-04-09T02:17:31.357 回答