我使用下面的代码来设置 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 );
。
但我无法追踪这个问题的原因。我在上面的代码中的任何地方都错了吗?