如何将位图图像转换为emgu图像?

时间:2014-01-08 10:02:56

标签: image converter emgucv

我需要将位图图像转换为图像格式图像,以便我可以在我的图像框中显示它。请帮忙谢谢!

1 个答案:

答案 0 :(得分:1)

也可以从.Net Bitmap对象创建图像。 C#中的代码是

 Image<Bgr, Byte> img = new Image<Bgr, Byte>(bmp); //where bmp is a Bitmap

您可以找到官方documnetation here