如何将 Mat 转换为 Bitmap
时间: 2023-04-08 15:02:04 浏览: 319
C# Bitmap转为Mat
可以使用以下代码将 Mat 转换为 Bitmap:
Mat mat = ... // 从某个地方获取 Mat 对象
Bitmap bitmap = Bitmap.createBitmap(mat.cols(), mat.rows(), Bitmap.Config.ARGB_8888);
Utils.matToBitmap(mat, bitmap);
其中,mat.cols() 和 mat.rows() 分别返回 Mat 对象的列数和行数,Utils.matToBitmap() 方法将 Mat 对象转换为 Bitmap 对象。
阅读全文