画像の高さと幅を半分にして切り抜くことで、元の画像の半分にしようとしています。 [画像トリミングする] [1]opencvの選択されたピクセルによる画像の切り取り
以下は私のコードですが、それは実行時例外を引き起こし、.exeファイルは、以下のエラーで動作を停止します:
以下OpenCV Error: Assertion failed (rect.width >= 0 && rect.height >= 0 && rect.x < image->width && rect.y < image->height && rect.x + rect.width >= (int)(rect.width > 0) && rect.y + rect.height >= (int)(rect.height > 0)) in cvSetImageROI, file C:\Development\opencv\sources\modules\core\src\array.cpp, line 3006
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
ですコード:
#include <iostream>
#include <string>
#include <opencv/cv.h>
#include <opencv/cxcore.h>
#include <opencv/highgui.h>
using namespace std;
using namespace cv;
int main(int argc, char** argv) {
IplImage *img1 = cvLoadImage("image/testcase.jpg");
cvNamedWindow("Image1:",1);
cvShowImage("Image1:",img1);
cout << "Width:" << img1->width <<" pixels"<< endl;
cout << "Height:" << img1->height <<" pixels"<< endl;
int width = img1->width ;
int lenght = img1->height;
// cropping the image
Rect roi;
roi.x = width;
roi.y = lenght;
roi.width = (roi.x)/2;
roi.height = (roi.y)/2;
Mat image_test;
image_test = imread("image/testcase");
// Must have dimensions of output image
IplImage* cropped = cvCreateImage(cvSize(roi.width,roi.height), img1->depth, img1->nChannels);
cvSetImageROI(img1, roi);
cvCopy(img1, cropped);
cvResetImageROI(img1);
cvNamedWindow("Cropped Image", 1);
cvShowImage("Cropped Image", cropped);
cvSaveImage ("savedImage/cropped.jpg" , cropped);
waitKey(0);
return 0;
}
をあなたは**時代遅れ使用している任意の特定の理由* * C api? – Miki