在 android 中,我正在尝试使用以下代码来缩放我的垫子。
Mat destMat = new Mat();
Size newSize=new Size(output.width()/6.0f, output.height()/6.0f);
Imgproc.resize(output, destMat, newSize, 0, 0, Imgproc.INTER_CUBIC);
当它尝试执行 resize 方法时,我得到以下异常。我的代码在 onCameraFrame() 中。
MatToBitmap 捕获 cv::Exception: /home/reports/ci/slave_desktop/50-SDK/opencv/modules/java/generator/src/cpp/utils.cpp:97: error: (-215) src.dims == 2 && info.height == (uint32_t)src.rows && info.width == (uint32_t)src.cols in function void Java_org_opencv_android_Utils_nMatToBitmap2(JNIEnv*, jclass, jlong, jobject, jboolean)