How can I convert a Mat element to IplImage * element? Please Help!
+1
A:
Mat mat_img;
//....
IplImage ipl_img = mat_img;
This puts a header of IplImage
on top of mat_img
so there is no copying. You can pass &ipl_img
to function which need IplImage*
.
Jacob
2010-06-10 22:03:27
thanks..!! it helped...
Kaushal
2010-06-11 10:33:24