Can we use OpenCV to get a Gaussian Filter with size of (w,h) [closed]
Hi guys,
I am learning about Gaussian Distribution these days, and I want to know if we Can use OpenCV to get a Gaussian Filter with size of (w,h).
After searching in the documentation, I found there is a function of cv.getGaussianKernel()
, which can produce a Gaussian Filter of ksize
.
But this filter has a same width and heigh, which in a square shape.
So does OpenCV provide other function which can produce a Gaussian Filter with size of (w,h)?
Your answer and idea will be appreciated!