我构建了here教的OpenCVLib,并在OpenCVLib中做了必要的工作以在mavenLocal中调用this。
然后我将其发布为mavenLocal,但由于我已经有了mavenLocal,所以没有将这些库放到我的应用程序文件夹中。
我尝试将位图转换为mat没问题。
但是我不能旋转垫子。
public Bitmap rotateMat(Bitmap bitmap, int i){
Mat mat = helper.bitmapToMat(bitmap);
switch (i) {
case 1:
Core.rotate(mat, mat, 0);
break;
case 2:
Core.rotate(mat, mat, 2);
break;
case 3:
Core.rotate(mat, mat, 1);
break;
default:
System.out.println("================= No Rotation");
}
return helper.matToBitmap(mat);
}
E/zygote64: No implementation found for void org.opencv.core.Core.rotate_0(long, long, int) (tried Java_org_opencv_core_Core_rotate_10 and Java_org_opencv_core_Core_rotate_10__JJI)
这是由Core.rotate(mat, mat, 0);
答案 0 :(得分:0)