Wavelet coefficients

What Are Wavelet Coefficients?

Wavelet coefficients are the numerical values obtained when a signal or image is decomposed using a wavelet transform. Each coefficient represents the inner product of the signal with a specific scaled and translated instance of a mother wavelet function, quantifying how closely the signal resembles that wavelet shape at a particular location and scale. Collectively, the set of wavelet coefficients at all scales and positions constitutes the wavelet representation of the signal, from which the original can be exactly reconstructed by the inverse transform. Wavelet coefficients are the fundamental data objects in wavelet-based signal processing, compression, and analysis systems.

The concept draws on the mathematical framework of multiresolution analysis: the discrete wavelet transform (DWT) produces coefficients at each level of a dyadic decomposition by passing the signal through complementary high-pass and low-pass filter pairs and downsampling the output by two. This hierarchical filter bank generates two types of coefficients at each scale level, capturing different aspects of the signal's structure.

Approximation and Detail Coefficients

The DWT divides wavelet coefficients into two categories at each decomposition level. Approximation coefficients, produced by the low-pass filter, capture the coarse-scale, low-frequency content of the signal and represent its smoothed version at the current scale. Detail coefficients, produced by the high-pass filter, capture the fine-scale, high-frequency content, corresponding to transients, edges, and rapid fluctuations. In a multilevel decomposition, the approximation coefficients from one level are passed through another filter pair to produce approximation and detail coefficients at the next coarser scale, continuing until the desired number of decomposition levels is reached. The DWT documentation from PyWavelets, the widely used open-source wavelet computation library, describes this cascaded filter bank structure and the indexing conventions used for approximation and detail coefficients at each level.

For two-dimensional data such as images, the 2D DWT produces four coefficient subbands at each level: one approximation subband (LL) corresponding to low-pass filtering in both horizontal and vertical directions, and three detail subbands (LH, HL, HH) capturing horizontal, vertical, and diagonal edges respectively. These subbands form the basis of wavelet-based image compression schemes.

Sparsity and Thresholding

A key property of wavelet coefficients for natural signals is sparsity: the wavelet expansion concentrates signal energy into a small number of large-magnitude coefficients, while the majority of coefficients are near zero. This sparsity arises because wavelets are well-matched to the local, transient structure of natural signals, which tend to be smooth in most regions with occasional sharp features. Energy compaction in the wavelet domain is the property exploited in compression: by retaining only the largest coefficients and discarding those below a threshold, a signal can be reconstructed with little perceptual or numerical error while requiring far less storage.

Thresholding of wavelet coefficients is also the basis of wavelet denoising. If an observed signal is the sum of a true signal and additive white Gaussian noise, the noise energy is spread nearly uniformly across all wavelet coefficients, while the signal energy remains concentrated. Applying a threshold to remove small-magnitude coefficients suppresses the noise-dominated part of the representation. Hard thresholding sets all coefficients below a threshold to zero; soft thresholding additionally shrinks large coefficients toward zero by the threshold amount. Research on optimal wavelet selection for signal denoising published in PMC demonstrates that the choice of wavelet family and threshold level both significantly affect denoising performance across different signal types. The method introduced by Donoho and Johnstone in 1994 under the name VisuShrink established the theoretical basis for threshold selection in the wavelet domain and remains widely cited.

Compressed sensing further exploits wavelet sparsity: if a signal is sparse in the wavelet coefficient domain, it can be recovered from a number of linear measurements much smaller than the Nyquist rate, with the recovery performed by convex optimization. This connection between wavelet domain sparsity and compressed sensing has opened new approaches to efficient sensing in medical imaging, radar, and communications.

Applications

Wavelet coefficients have applications in a range of fields, including:

  • Image and video compression, where JPEG 2000 and related standards quantize and encode wavelet coefficients rather than pixel values, achieving high compression ratios with scalable quality
  • Biomedical signal analysis, where wavelet coefficient thresholding removes baseline wander and muscle artifact noise from electrocardiogram and EEG recordings
  • Seismic data interpretation, where coefficient patterns at different scales identify stratigraphic features and fault signatures
  • Texture classification in machine vision, where wavelet coefficient statistics serve as discriminative features for surface recognition
  • Numerical solution of partial differential equations, where sparse wavelet coefficient representations reduce the computational cost of adaptive solvers
Loading…