I am working on blurred image classification and found that FFT can be applied for blurred image classification. But as I dont have much idea about FFT I have some problems with getting a rotation invariant power spectrum histogram from FFT.
These are some of the codes I tried but I have no idea about how to get a rotation invariant histogram from it. (dont know how to transform this to polar domain and histogram it)
fftI = ifftshift(fft2(I));
fftI = abs(fftI);
to do 1: transform to polar coordinates
to do 2: get a rotation invariant histgram with N bins
Can anyone help me? Thanks.