c# 4.0 - How to Convert Emgu.Cv.Image<Gray,byte> to System.Image -


i new emgu cv , wondering if let me know how change emgu.cv.image system.image?if there need further explanation, let me know , it.the language using c#.

you can use toimage() method system.drawing.bitmap (which derived class of system.drawing.image), this

// create emgu image of 400x200 filled blue color image<bgr, byte> img = new image<bgr, byte>(400, 200, new bgr(255, 0, 0));  // copy .net image system.drawing.image pmyimage = img.tobitmap(); 

is mean?


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -