How to Convert Emgu.Cv.Image<Gray,byte> to System.Image
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I was new to Emgu Cv and i was wondering if someone could let me know how i change Emgu.Cv.Image to System.Image?If there is a need for further explanation, let me know and i will do it.The language i am using is C#. 回答1: You can just use the ToImage() method to get a System.Drawing.Bitmap (which is a derived class of System.Drawing.Image ), so something like this // create an Emgu image of 400x200 filled with Blue color Image<Bgr, Byte> img = new Image<Bgr, byte>(400, 200, new Bgr(255, 0, 0)); // copy to a .NET image System.Drawing.Image