JA EN

Wavelet

A technique that decomposes images into multi-resolution representations preserving both spatial and frequency information, serving as the compression basis for JPEG 2000 and effective for denoising.

A wavelet decomposes an image into multi-resolution representations preserving both spatial and frequency information. Unlike the Fourier transform which provides only frequency content, wavelet transforms reveal where specific frequency components exist in the image.

The 2D Discrete Wavelet Transform (2D DWT) produces four subbands:

Common wavelet basis functions:

Applications include JPEG 2000 compression (smooth degradation without block artifacts), denoising via thresholding detail coefficients (wavelet shrinkage), and texture analysis through energy distributions at each scale. Python's pywt library provides straightforward implementation.

Related Terms

Related Articles