android mat 转 bitmap
Posted 华天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android mat 转 bitmap相关的知识,希望对你有一定的参考价值。
Bitmap bmp = null; Mat tmp = new Mat (height, width, CvType.CV_8U, new Scalar(4)); try { //Imgproc.cvtColor(seedsImage, tmp, Imgproc.COLOR_RGB2BGRA); Imgproc.cvtColor(seedsImage, tmp, Imgproc.COLOR_GRAY2RGBA, 4); bmp = Bitmap.createBitmap(tmp.cols(), tmp.rows(), Bitmap.Config.ARGB_8888); Utils.matToBitmap(tmp, bmp); } catch (CvException e){Log.d("Exception",e.getMessage());}
以上是关于android mat 转 bitmap的主要内容,如果未能解决你的问题,请参考以下文章