OpenCV VERSION : 4.1.1 opencv android api
git clone https://github.com/hello-bryan/HelloOpenCV.git
Bitmap to Mat
Mat gray = new Mat();
Utils.bitmapToMat(bitmap, gray);
Convert gray
Imgproc.cvtColor(gray, gray, Imgproc.COLOR_RGBA2GRAY);
Mat to Bitmap
Bitmap grayBitmap = Bitmap.createBitmap(gray.cols(), gray.rows(), null);
Utils.matToBitmap(gray, grayBitmap);
- github desktop test 중