You can simply use the ToImage() method to get 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 pMyImage = img.ToBitmap();
Is that what you mean?
source share