Ask Your Question

Revision history [back]

Basically you need a type conversion from the Mat element towards the older IplImage structure, which is a cvArr structure if I recall correctly.

Mat image;
IplImage tmp = image;

This works in C++ style, can you try if it works in Java?