Hello all,
Apologies for the long question.
I've been asked to do some look extraction on a satellite image and I'm having a lot of trouble understanding what I'm actually being asked, let alone on how to complete it.
I have a single-look complex (SLC) image (501x1759 matrix) and I have been told to normalise it, put it through an FFT (simple enough) and then shift the transform around 0 (again simple enough). Where it loses me is when it asks me to "Generate the spectral profile in azimuth direction. What are the min and max frequencies of the profile" It says this can be done by averaging the absolute value of the FFT in the range direction.
Can someone explain this to me and how I get a spectra from this? A histogram managed to get me something but I have no idea if this was the best way of getting the max/min.
FFT_I=fft2(N_I);
FFT_I=fftshift(FFT_I);
AFFT_I=abs(FFT_I);
M=mean(AFFT_I);
histogram(M)
Any help with this is greatly appreciated.