Ask Your Question

Pasha's profile - activity

2016-08-28 08:21:06 -0600 commented question Please let me know how to convert Mat to IplImage in JAVA. Thank you in advance.

I'm working on face recognition in java and removing javacv will break the entire code. I just need something that'll convert Mat to IplImage since facerecognizer.predict() uses IplImage as an argument.

2016-08-28 07:58:59 -0600 commented question Please let me know how to convert Mat to IplImage in JAVA. Thank you in advance.

It is from opencv_core class in javacv.cpp package.

2016-08-27 09:10:55 -0600 asked a question Please let me know how to convert Mat to IplImage in JAVA. Thank you in advance.

I've tried using the following code; Mat mat_img; IplImage ipl_img = mat_img; but it is giving me the following error, Type mismatch: cannot convert from Mat to opencv_core.IplImage