I have problem in converting System.Drawing.Image to Emgu.CV.Image. i can load my image in formapplication
string im_name = str[index];
Emgu.CV.Image<Bgr, Byte> img = new Image<Bgr, byte>(im_name);
but this code gives me error of invalid arguments
System.Drawing.Image img_btmap = System.Drawing.Image.FromFile( im_name);
Emgu.CV.Image<Bgr, Byte> img1 = new Image<Bgr, byte>(img_btmap);
Somebody has idea why??? regards