First time here? Check out the FAQ!

Ask Your Question
5

converting from iplimage to cvmat and vise versa

asked May 28 '13

Nermeen gravatar image

updated Nov 30 '0

could anybody please tell me how can i convert iplimage to mat and convert mat to iplimage

Preview: (hide)

2 answers

Sort by » oldest newest most voted
7

answered May 28 '13

Jawaher Khemakhem gravatar image

updated May 28 '13

To convert from Mat to IplImage :

 Mat mat_img;
IplImage ipl_img = mat_img;

For example to use ipl_img you will write ,

cvNot(&ipl_img ,&ipl_img );

To convert from IplImage to Mat :

IplImage ipl_img;
Mat mat_img(ipl_img );
Preview: (hide)

Comments

that's simple, understandable and helpful.... thank u

Nermeen gravatar imageNermeen (May 28 '13)edit
2

answered May 28 '13

Check OpenCV C++ Cheatsheet. It can be helpful.

Preview: (hide)

Comments

2

(taken from the sheet)

// Assuming somewhere IplImage *iplimg; exists

// and has been allocated and cv::Mat Mimg has been defined

Mat imgMat(iplimg); //Construct an Mat image "img" out of an IplImage

Mimg = iplimg; //Or just set the header of pre existing cv::Mat

//Ming to iplimg's data (no copying is done)

//Convert to IplImage or CvMat, no data copying

IplImage ipl_img = img;

CvMat cvmat = img; // convert cv::Mat -> CvMat

poti gravatar imagepoti (May 28 '13)edit

thank u but I'm new to opencv and i thought that was complicated to me :(

Nermeen gravatar imageNermeen (May 28 '13)edit

Question Tools

Stats

Asked: May 28 '13

Seen: 38,309 times

Last updated: May 28 '13