I\'m pretty new to OpenCV (about 2 months now). I have the book Learning OpenCV by Bradski and Kaehler. My question is, if I want to do everything in a 2.0+ manner, when sho
Iplimage is some structure of C interface in Opencv, and Mat is more suitable for C++ program and support some C++ styles like ref parameter and stream operator, etc. Although they are all object oriented programming, Mat includes more methods itself than Iplimage does, like create and release, which Ipliamge would call some cvXXX interface to complete. Moreover, Mat is a new structure from Opencv2, which I think is symbol of development for the old ones. I wish it help.