Wednesday, April 3, 2013

DCT

 https://docs.google.com/viewer?a=v&q=cache:3uZC5gFYPQUJ:www.dcd.zju.edu.cn/~jun/Courses/Multimedia2011.../complementary/DCT_Theory%2520and%2520Application.pdf+&hl=en&gl=in&pid=bl&srcid=ADGEEShDA_rS5clPuA-Bp1pgwTI3VBIMpzBCU1WLydBZCnWfVTk1u6z1OpXlM1dEvmPJZN4dCe7tSwxoRnk3Xs-0oTwRwkz332AdBGCO322S8ZeYlZSyKTOCKhDO1gwT226GSkd2wcCl&sig=AHIEtbSjL5oArajybDXEvKuCcahAlyOWtw


or

http://ebookbrowse.com/the-discrete-cosine-transform-dct-theory-and-application-by-syed-ali-khayam-march-10th-2003-pdf-d326144520


http://dsp.stackexchange.com/questions/13/what-is-the-difference-between-a-fourier-transform-and-a-cosine-transform
http://www.edaboard.com/thread114713.html
http://www.pcs-ip.eu/index.php/main/edu/5
http://www.cs.cf.ac.uk/Dave/Multimedia/node231.html


http://www.comp.nus.edu.sg/~wangye/papers/1.Audio_and_Music_Analysis_and_Retrieval/2000_DFT,_DCT,_MDCT,_DST_and_Signal_Fourier_Spectrum_Analysis.pdf
http://www.fftw.org/doc/Real-even_002fodd-DFTs-_0028cosine_002fsine-transforms_0029.html


www.cse.iitk.ac.in/users/avinashc/Y9111008_Y9111024_present.pdf
www.ee.ic.ac.uk/hp/staff/dmb/courses/DSPDF/00300_Transforms.pdf
http://www.svcl.ucsd.edu/courses/ece161c/handouts/DCT.pdf
http://stackoverflow.com/questions/13187992/how-to-find-all-frequencies-in-audio-with-discrete-fourier-transform

http://homepages.inf.ed.ac.uk/rbf/HIPR2/fourier.htm



research.stowers-institute.org/efg/Report/FourierAnalysis.pdf
www.dcd.zju.edu.cn/~jun/Courses/Multimedia2011.../complementary/DCT_Theory%20and%20Application.pdf


 fft


http://stackoverflow.com/questions/2551778/fft-understanding




Can somebody give a good explanation of FFT image transform How the FFT transformed image and it's Re^2+Im^2 image can be analyzed? I just want to understand something when loiking to the image and it's frequency.
share|improve this question


2 Answers


up vote 10 down vote accepted
EDIT: There is a great introduction to the concepts here.
There's a fair bit of math behind that question. In simple terms, consider a 1-D function, such as an audio clip. The fourier transform identifies the frequencies present in that signal. Each sample in the original audio clip correlates to the amplitude of the sound wave at any given point in time. In contrast, each sample in the fourier transform identifies the amplitude of a particular frequency of oscillation. For example, a pure sine wave at 1 kHz will have a fourier transform with a single spike at the 1 kHz mark. Audio waves are combinations of many different sine waves, and the fourier transform isolates which sine waves are contributing and by how much. (Note that the real explanation requires delving into complex numbers, but the foregoing gives the essence of what's going on).
The fourier transform of an image is a simple extension of the 1-D fourier transform into two dimensions, and is achieved by simply applying the 1-D transform to each row of an image, and then transforming each column of the resulting image. It produces essentially the same thing. A picture of smooth water waves travelling in a diagonal direction will transform to a series of spikes along that same diagonal.
The fourier transform is defined over continuous functions. The FFT is an technique for efficiently evaluating the fourier transform over discrete sets of data.
share|improve this answer

1  
Good answer - it might also be worth explaining the concept of spatial frequency in an image, and the interpretation of the phase and magnitude of the 2D FFT. – Paul R Mar 31 '10 at 10:33
1  
Thanks for the suggestion, @Paul. Rather than bloat the answer any more, I found a good link. – Marcelo Cantos Mar 31 '10 at 11:21

+1, good answer, I just like to add that FFT is an algorithm for efficiently computing the DFT. More on DFT: en.wikipedia.org/wiki/Discrete_Fourier_transform – Frunsi Mar 31 '10 at 11:22

@Marcelo: good link - plenty of practical examples rather than the usual dry mathematical treatment – Paul R Mar 31 '10 at 12:06

That's a great link. I've always found fourier transforms relatively easy to understand when applied to a time-signal (like audio, or a mechanical vibration), but difficult to understand with images. It didn't occur to me that it was actually pretty simple. – notJim Mar 31 '10 at 18:18
show 1 more comment

No comments:

Post a Comment