1 | initial version |
If you can, update your OpenCV to 2.4.11. If you can't:
IplImage* imgC = cvLoadImage(filename);
than convert to Mat with Mat img = Mat(imgC);
? 2 | No.2 Revision |
If you can, update your OpenCV to 2.4.11. If you can't:
IplImage* imgC = cvLoadImage(filename);
than convert to Mat with Mat img = Mat(imgC);
?