Opencv version: opencv 3.4.1-2
Compiling with flags
USE_OPENCV = 1
USER_OPENCV_HIGHGUI = 1
throws errors, as there are some functions that are not available anymore in recent OpenCV versions. (I did not find those functions in any current API)
Specifically:
* cvMean
* cvCvtPixToPlane
Mabye there is more, but thats the functions the make
command throws errors at me.
Maybe consider to exchange pIplImage
with c++'s own Mat
in a future versions? It should be pretty straight forward :https://stackoverflow.com/questions/3232022/opencv-iplimage-versus-mat-which-to-use
I tried to find out in which version of opencv cvMean was still active but I could not find any, instead I found this post, stating that IplImage is entirely dead, an one should not use it anymore:
http://answers.opencv.org/question/177423/equivalent-of-cvmean-from-opencv-245-in-opencv-331/