标签: image-processing opencv emgucv
如何转换图像< Bgr,Byte>到图像?
提前谢谢。
答案 0 :(得分:2)
Image类有一个.ToBitmap()方法。
所以它应该像
image1.ToBitmap();
答案 1 :(得分:1)
您可以简单地使用Emgu Image的Bitmap属性。
Image<Bgr,Byte> img = .... Bitmap bmp = img.ToBitmap();