I am really confused by using Mat and IplImage objects in OpenCV. I read a lot of questions and answers here but I am still in trouble with these 2 types.
Many times, I need converting them to each other that is what makes me lost in those conversions. The functions I know and use sometimes take IplImage objects and sometimes Mat objects.
For example, "cvThreshold" method takes IplImages and "threshold" method takes Mat objects, no problem here but "cvSmooth" method is only for IplImages, I couldn't find a dedicated method for Mat objects (is there?), then I unwillingly convert Mat to IplImage then use in "cvSmooth" and then again convert to Mat. At this point, how can I use Mat object with cvSmooth? I am sure this is not a normal way to handle this issue and there are better ways. Maybe I am missing something in understanding these types.
Can you please help me out to get rid of this problem ?
Calling
cvSmooth
:But if you look into the
cvSmooth
implementation you will easily find the C++ analogs: