I have a multidimensional matrix and I want to smooth Gaussian smoothing not only in 2D along x and y , but also want to smooth over the channels in 3D. How can I do this in OpenCV?
I know there is a function called GaussianBlur that can apply a Gaussian filter in 2D, but what about 3D? What you can call it looks something like this:
GaussianBlur(frame, frame2, Size(sigma, sigma), 0, 0);
c ++ image-processing opencv filtering
user2970089
source share