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
thanks for the help.
I also discovered since posting this question that a function with a Mat
as a argument can take an IplImage
directly in the place of that Mat
argument, which makes it pretty easy to update your code in chunks if it's already broken into convenient functions. Just change the function arguments from IplImage*
to Mat
, then modify the function to work on a Mat
. Other code calling that function should still work fine (it has in my experience).