im trying to implement a gaussian blur with the use of FFT and could find here the following recipe.
This means that you can take the Fourier transform of the image and the filter, multiply the (complex) results, and then take the inverse Fourier transform.
I've got a kernel K, a 7x7 Matrix and a Image I, a 512x512 Matrix.
I do not understand how to multiply K by I. Is the only way to do that by making K as big as I (512x512) ?