Main Page   Modules   File List  

fft.c File Reference

fast Fourier transform More...


Detailed Description

fast Fourier transform

Usage: fft in1 in2 dir out1 out2

Description: computes the 2 dimensional Fast Fourier Transform of an image. The input image must be square and the number of rows (or columns) MUST be a power of two.

This program will compute either a forward or inverse FFT, depending on the direction requested with the dir option. A dir value of 0 will result in a forward FFT, and a dir value of 1 will result in an inverse FFT.

The input arguments are described as follows:

in1 specifies the input image, which can be of data type BYTE, LONG or FLOAT. If the input image is of data type BYTE, then the data will first be converted to FLOAT before proceeding. If the first input image is of type BYTE or FLOAT, then it is assumed that it is the real component of the complex pair, and the imaginary component may be input using the optional in2 input argument. If no imaginary component is specified when using a real input, then the imaginary component is assumed to be zero.

in2 specifies the optional input image, which can be of data type BYTE, LONG or FLOAT. The keyword "null" may be used. It is assumed that this image represents the imaginary component of the complex pair.

out1 specifies the real output image, which will be a single band image of data type FLOAT. This image contains only the real component of the complex pair.

out2 specifies the imaginary output image, which will be a single band image of data type FLOAT. This image contains only the imaginary component of the complex pair.

dir specifies the FFT direction. A dir of 0 will result in a forward FFT, and a dir of 1 will result in an inverse FFT.

Note that it is the users responsibility to ensure that the correct components of the image are used when requesting an FFT or Inverse FFT. Unexpected results may occur if the user requests an inverse FFT and only inputs the real component of an image. If an FFT of an image is taken, then both the real and imaginary components must be used to obtain a correct inverse FFT.

For a forward FFT, the input data is multiplied by (-1)**(x+y) where (x,y) is the pixel coordinate. This has the effect of shifting the frequency domain result so that the DC component is at (N/2,N/2) rather than (0,0). For the inverse FFT case, the data is multiplied by (-1)**(x+y) AFTER the FFT processing, accounting for the fact that the input frequency domain data was center-shifted by the forward FFT. The center-shifted frequency domain representation is much easier to visualize and filter than it would be if not shifted. For more information on the shifting teqchnique, see R.C. Gonsalez and P. Wintz, "Digital Image Processing, 2nd ed, sec 3.2.2, p. 77. (1987). The center-shifting should really be an option.

For the forward FFT, there is no scaling on the data. For the inverse FFT, the data is scaled by 1/(N*N). Thus, to generate a sinewave of amplitude 1.0 for a 64x64 complex image to be handed to the inverse FFT, there should be two impulses at conjugate locations (symmetric about the center of the image) each with amplitude 0.5/(64*64). Why 0.5? It's because each impulse carries half of the power! The scaling should really be an option, but it currently is not (perhaps in a future patch).

Types supported: byte 2d, long 2d, float 2d

Category: signal

Author:
Scott Wilson, Rick Bogart, Lyle Bacon

Generated on Fri Dec 17 11:59:37 2004 for Pink by doxygen1.2.18