Good evening,
I've been searching everywhere for the function to resize an image of type Mat in opencv. I found many solutions, none of which seem to work.
For example, I tried using
size_t s = 2; mat.resize(s); // but this gives me an image 2 pixels tall and there are no overloaded methods for resize that take 2 arguments such an width and height
Additionally, I could not find any functions to smooth an image, can someone explain how to smooth (gaussian) the images in the most efficient way with the newest release of opencv?
Thank you
-Dmitry