calculation of FFT of an image

Status
Not open for further replies.

shan14

Member level 3
Joined
Aug 18, 2014
Messages
61
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Visit site
Activity points
393
Hi

how to calculate the FFT of image of stripes in matlab ??
 

Hi

Can I ask what exactly we see in the output of FFT??

or what is the output of an FFT ?? is it the frequency spectrum??
 

The output of the FFT is a sequence of complex numbers. Each complex number is a pair consisting of a real-part and an imaginary-part, typically shown as a pair (re,im).

If you want to graph the power spectral density you'll graph 20*log10( sqrt( re^2 + im^2 ) ), using the first N/2 complex numbers of the FFT output, where N is the number of input samples to the FFT

The transform gives information about the frequency content over the past period, so it is analysed as a reflection, starting at the most recent sample and working backwards. You can compute a phase shift of cosine directly from real and imaginary parts in the spectrum.

The Fourier Transform is really indifferent about time domain or frequency domain, it just transforms one function to another, and it happens to be the case that pulses transform to sinusoids and vice versa.

It also shows that time delay translates to rotation of the phase spectrum. The position of a pulse in time domain can be accurately stored in complex frequency information
 
Hi

Thanks

I have another question, Does twiddle factor for radix2 ,radix4 and split adix etc are different ??
How that affects the output of FFT??
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…