我正在使用OpenCV,我正在尝试构建一个执行图像处理的Android应用程序。我使用步骤described here设置了OpenCV。它在Eclipse中运行良好,但是当我尝试在Android中运行它时,它会崩溃。
这是我的代码
public class Extract {
public Bitmap croppedImage(Bitmap b, Rect r){
Bitmap mouth = Bitmap.createBitmap(b, r.left+10,r.top+10,r.width()-15,r.height()-15);
Mat imageMat = new Mat ();
return mouth;
}
}