i.fft.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <h2>DESCRIPTION</h2>
  2. <em>i.fft</em> is an image processing program based on the FFT algorithm
  3. given by Frigo et al. (1998), that processes a single input raster map layer
  4. (<b>input_image</b>) and constructs the real and imaginary Fourier
  5. components in frequency space.
  6. <h2>NOTES</h2>
  7. The real and imaginary components are stored into the
  8. <b>real_image</b> and <b>imaginary_image</b> raster map
  9. layers. In these raster map
  10. layers the low frequency components are in the center and
  11. the high frequency components are toward the edges. The
  12. <b>input_image</b> need not be square. A
  13. color table is assigned to the resultant map layer.
  14. <p>
  15. The current geographic region and mask settings are respected when
  16. reading the input file. The presence of nulls or a mask will make the
  17. resulting fast Fourier transform invalid.
  18. <h2>EXAMPLE</h2>
  19. North Carolina example:
  20. <div class="code"><pre>
  21. g.region rast=lsat7_2002_70
  22. i.fft input_image=lsat7_2002_70 real=lsat7_2002_70.real imaginary=lsat7_2002_70.imag
  23. # set region to resulting FFT output map (due to new FFT coordinate space):
  24. g.region rast=lsat7_2002_70.real -p
  25. d.mon x0
  26. d.rast lsat7_2002_70.real
  27. d.rast lsat7_2002_70.imag
  28. </pre></div>
  29. <h2>SEE ALSO</h2>
  30. <ul>
  31. <li> M. Frigo and S. G. Johnson (1998): "FFTW: An Adaptive Software Architecture
  32. for the FFT". See <a href="http://www.fftw.org">www.FFTW.org</a>: FFTW is a C subroutine library
  33. for computing the Discrete Fourier Transform (DFT) in one or more
  34. dimensions, of both real and complex data, and of arbitrary input size.
  35. <li> John A. Richards, 1986. Remote Sensing Digital Image Analysis, Springer-Verlag.
  36. </ul>
  37. <p>Personal communication, between progam author and Ali R. Vali,
  38. Space Research Center, <A HREF="http://www.utexas.edu">University of Texas</a>, Austin, 1990.
  39. <p>
  40. <em>
  41. <a href="i.cca.html">i.cca</a>,
  42. <a href="g.gui.iclass.html">g.gui.iclass</a>,
  43. <a href="i.class.html">i.class</a>,
  44. <a href="i.ifft.html">i.ifft</a>,
  45. <a href="i.pca.html">i.pca</a>
  46. </em>
  47. <h2>AUTHOR</h2>
  48. David Satnik, GIS Laboratory,
  49. Central Washington University
  50. <br>
  51. Glynn Clements (FFTW support)
  52. <p><i>Last changed: $Date$</i>