RTUComputer ScienceYr 2024 · Sem 62024

Q13Digital Image Processing

Question

4 marks

Discuss the Fast Fourier Transform (FFT) and its application in image filtering.

Answer

An advanced mathematical breakdown of the Fast Fourier Transform (FFT). Details how the architecture shatters the image into orthogonal sinusoidal frequencies, allowing for absolute precision high/low-pass manipulation.

The standard Discrete Fourier Transform (DFT) mathematically shatters an image into a complex combination of 2D sine and cosine waves. However, executing the 2D DFT on a massive image requires operations, causing catastrophic CPU processing delays. The Fast Fourier Transform (FFT) is an incredibly brilliant mathematical algorithm that exploits symmetry to aggressively reduce the computational complexity to , making real-time frequency domain processing physically possible.

The Mathematical Architecture of Frequency Filtering

Instead of sliding a physical mask, the FFT algorithm executes a massive global operation:

  • Step 1: The FFT violently transforms the spatial image into its exact mathematical frequency spectrum . The center of this new matrix represents Hz (the smooth, flat background colors), while the edges represent massive high frequencies (sharp edges, noise).
  • Step 2: The engineer engineers a strict mathematical Filter Function . This function is directly multiplied point-by-point against the spectrum: .
  • Step 3: The Inverse FFT (IFFT) violently forces the modified spectrum back into the physical spatial domain to produce the final image .

Filter Applications

  • Ideal Low-Pass Filter (ILPF): Mathematically constructs a strict rigid circle in the center of . Everything inside the circle () survives; everything outside is violently forced to . It instantly destroys all high-frequency noise but causes severe "Ringing" (ripples) in the final image.
  • Butterworth Low-Pass Filter: Replaces the rigid circle with a smooth mathematical curve, eradicating high frequencies without causing the catastrophic ringing effect, yielding a perfectly smoothed image.
Back to Paper