我已经看过如何在 java api 中使用 OpenCV 获取子图像,但这并没有帮助
我很好奇如何创建从文件加载的 Mat 图像的子图像。当我运行时:
crop = img.submat(405, 450, 280, 335);
我得到:
OpenCV Error: Assertion failed (m.dims >= 2) in cv::Mat::Mat, file ..\..\..\..\opencv\modules\core\src\matrix.cpp, line 269
Exception in thread "main" CvException [org.opencv.core.CvException: cv::Exception: ..\..\..\..\opencv\modules\core\src\matrix.cpp:269: error: (-215) m.dims >= 2 in function cv::Mat::Mat
]
at org.opencv.core.Mat.n_submat_rr(Native Method)
at org.opencv.core.Mat.submat(Mat.java:2270)
at Parking.WebCommunications.processImage(WebCommunications.java:54)
at Parking.WebCommunications.<init>(WebCommunications.java:27)
at Parking.App.main(App.java:19)
我似乎无法弄清楚为什么会这样。当我在图像上运行似乎是python中类似的一段代码时,它可以正常工作......但我需要java才能工作......
编辑:
Range xRange = new Range(405, 450);
Range yRange = new Range(280, 355);
Mat crop;
Mat blur = null;
System.loadLibrary("opencv_java2411");
//Load image from file
Mat img = Highgui.imread("/Users/\"User name\"/git/SE300/JavaWorkspace/ParkingLotApp/src/main/resources/bottomOpen.JPG");
//LOOP:
//Crop to the Nth spot: cropN = img[y:y+h, x:x+w]
System.out.println(img.rows());
System.out.println(img.cols());
crop = img.submat(405, 450, 280, 335);