我是openCV android圖像處理中的新手。但我面臨一些問題。當我在Android上使用OpenCV的我用墊,然後我的應用程序將粉碎....這有什麼問題.....爲什麼我的應用程序在我使用openCv時碾壓Mat
我的代碼是在這裏..:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView img=(ImageView) findViewById(R.id.imageView);
Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.in);
Mat tmp = new Mat (b.getWidth(), b.getHeight(), CvType.CV_8UC1);
Utils.bitmapToMat(b, tmp);
Imgproc.cvtColor(tmp, tmp, Imgproc.COLOR_RGB2GRAY);
//there could be some processing
Imgproc.cvtColor(tmp, tmp, Imgproc.COLOR_GRAY2RGB, 4);
Utils.matToBitmap(tmp, b);
img.setImageBitmap(b);
}
嘗試註釋掉一些代碼行以提供最小代碼示例。哪條線路導致崩潰? –