0

I am trying to replicate the scipy gaussian_filter in C++.

from scipy.ndimage import gaussian_filter
data = np.zeros([120])
gaussian_filter(data, sigma=0.5)

Can any one guide/share similar raw implementation in python.
I can implement the same in C++.
Thanks

kskill
  • 31
  • 3
  • Hi. Did you found a solution? In my case in C++ I am doing the things manually: define a Gaussian kernel, compute TF of the kernel and the image with FFTW, multiply both, compute inverse TF of the product. – dagnic Feb 24 '23 at 09:39

0 Answers0