标签: image converter emgucv
我需要将位图图像转换为图像格式图像,以便我可以在我的图像框中显示它。请帮忙谢谢!
答案 0 :(得分:1)
也可以从.Net Bitmap对象创建图像。 C#中的代码是
Image<Bgr, Byte> img = new Image<Bgr, Byte>(bmp); //where bmp is a Bitmap
您可以找到官方documnetation here