1

我使用下面的代码来设置 ROI 并裁剪图像。

cv::Mat testMat = [CaptureViewController cvMatWithImage:self.storeImage];
cv::Rect roi(faces[i].x, faces[i].y, faces[i].width, faces[i].height);
cv :: Mat image_roi;
image_roi = testMat ( roi );

self.CroppedImage = [CaptureViewController imageWithCVMat:image_roi];
UIImageWriteToSavedPhotosAlbum(self.CroppedImage, self,  nil,nil);

但我收到以下错误:

<Error>: CGContextDrawImage: invalid context 0x0
OpenCV Error: Assertion failed (0 <= roi.x && 0 <= roi.width && roi.x + roi.width <= m.cols && 0 <= roi.y && 0 <= roi.height && roi.y + roi.height <= m.rows)

我设置了断点并在这里测试了出现上述错误的地方image_roi = testMat ( roi );

但我无法追踪这个问题的原因。我在上面的代码中的任何地方都错了吗?

4

2 回答 2

0

尝试 clone() 对象。

image_roi = testMat(roi).clone();
于 2013-04-04T01:37:42.793 回答
0

我知道现在回答这个问题为时已晚,但也许它会帮助其他面临类似问题的人。该错误似乎是非常自我描述的。它说您的 roi(感兴趣区域)矩形似乎超出了 cv::Mat 的范围。

确保 (left top x, left top y, width, height) 在 testMat 的范围内:

faces[i].x = faces[i].x >= 0 ? faces[i].x : 0;
faces[i].y = faces[i].y >= 0 ? faces[i].y : 0;
faces[i].width = faces[i].x + faces[i].width > testMat.cols ? testMat.cols - faces[i].x : faces[i].width;
faces[i].height = faces[i].y + faces[i].height > testMat.rows ? testMat.rows - faces[i].y : faces[i].height;
于 2016-03-19T15:46:39.820 回答