I have to do a convolution in frequency domain, and I'm not sure if I got the steps right.
- I'm doing the fourier of image I FI=fft(I); After that should I switch the quarters 1-3,2-4 or not?
2.Preparing the filter mask.
for ex. 1 1 1
1 5 1
1 1 1
and when I make that mask i resize it to the height and width of the image, by taking the defined by user 3x3 mask to the center of mask image. After that should I switch the quarters 1-3,2-4 or not?
3 How should the step 3 look like? I know that i have to do here a fourier of mask, but should I do a fourier transform of mask that is a 2D array of integers or sth to do with a original image?
4.Now i multiply the two transforms.
5.Make a inverse fourier on the result of step 4. and we're done.
I know how to do the fft and ifft and how to switch the quarters, but i'm confused about the steps. I'm using Qt C++ and fftw3.