1 | initial version |
You are right, using matToBitmap from Utils class is the easiest way.
You can see the OpenCV Android examples for usages, something like this:
Mat myMat = mListener.onCameraFrame(frame);
Utils.matToBitmap(myMat, myBitmap);
According to the documentation: