First time here? Check out the FAQ!
answered 2015-04-28 05:49:39 -0600
Here it's the simplest way to convert iplImage to MAT
IplImage ipl_img; Mat mat_img(ipl_img );
And Here you can Convert MAT to iplimage
Mat mat_img; IplImage ipl_img = mat_img;