C09 Chapter Contents
C09 Chapter Introduction (PDF version)
NAG Library Manual

NAG Library Chapter Introduction

C09 – Wavelet Transforms

+ Contents

1  Scope of the Chapter

This chapter is concerned with the analysis of datasets (or functions or operators) in terms of frequency and scale components using wavelet transforms. Wavelet transforms have been applied in many fields from time series analysis to image processing and the localization in either frequency or scale that they provide is useful for data compression or denoising. In general the standard wavelet transform uses dilation and scaling of a chosen function, ψt, (called the mother wavelet) such that
ψa,b t = 1 a ψ t-b a
where a gives the scaling and b determines the translation. Wavelet methods can be divided into continuous transforms and discrete transforms. In the continuous case, the pair a and b are real numbers with a>0. For the discrete transform, a and b can be chosen as a=2-j, b=k2-j for integers j, k 
ψj,k t = 2j/2 ψ 2jt-k .
The continuous real valued, one-dimensional wavelet transform (CWT) is included in this chapter. The discrete wavelet transform (DWT) at a single level together with its inverse and the multi-level DWT with inverse are also provided for one, two and three dimensions. The choice of wavelet for CWT includes the Morlet wavelet and derivatives of a Gaussian while the DWT offers the orthogonal wavelets of Daubechies and a selection of biorthogonal wavelets.

2  Background to the Problems

The CWT computes a time-frequency analysis of a signal, xt, which can yield high localization in time of the high frequency features present. It is defined as
Ca,b = - + 1a ψ * t-ba dt
where ψ* denotes the complex conjugate of the wavelet function, a is the dilation parameter and b is the localization parameter. (Currently only the real valued transform is offered.)
The discrete wavelet transform (DWT) is defined by a mother wavelet function ψt, and a related scaling function, ϕt, where
ϕt = k gk 2 ϕ2t-k . ψt = k hk 2 ϕ2t-k .
These in turn are represented as a pair of filters with finite support. They can be viewed as a high pass filter, hk, for k=1,2,,m, paired with a low pass filter, gk, for k=1,2,,n. The DWT at a single level is carried out by convolution of the filter with the input data, followed by downsampling by two. In order to obtain exact reconstruction of the original input these filters must satisfy certain conditions. For orthogonal wavelets, n=m, these are,
k=1 m hk = 0 , k=1 m h k 2 = 1 , k=- hk hk+2l = 0 , k=1 m gk = 2 , k=1 m gk2 = 1 , k=- gk gk+2l = 0 .
for all nonzero integers, l.
The reconstruction algorithm convolves the inverse filters with the wavelet coefficients previously computed together with upsampling and summation to return to the original input. For orthogonal wavelets the inverse filters are the same as those for the forward DWT.
In the simplest case, the Haar wavelet, the nonzero filter coefficients are
h = -1 2 , 1 2 g = 12,12
while for the Daubechies wavelet with two vanishing moments and four nonzero coefficients, the filter coefficients are
h = -1+3 42 , 3+3 42 , -3+3 42 , 1-3 42 g = 1-3 42 , 3-3 42 , 3+3 42 , 1+3 42
In the orthogonal case the same filters are used for both decomposition and reconstruction.
Relaxing the orthogonality requirement allows for biorthogonal wavelets which consist of two dual wavelet bases. For example, the biorthogonal 2.2 filters are,
h = 2 14,-12,14 , g = 2 -18,14,34,14,-18 h = 2 18,14,-34,14,18 g = 2 14,12,14 .
Note that there are several possible interpretations of orthogonal and biorthorgonal wavelet filters which satisfy the requirements. These differ in the sign of the coefficients and the ordering of the filters.
In order to obtain exact reconstruction when applying the DWT and its inverse to a finite dataset, say xt, for t=1,2,,N, some method of extending the input at its end is required. Several methods which are in general use are: periodic extension, half-point symmetric extension, whole-point symmetric extension and zero end extension where the added data points are taken to be zero. The two types of symmetric end extension reflect the given data values from the end points for whole-point extension or else by repeating the end points and reflecting from points halfway between the end point and its repeat for half-point extension.

2.1  Multiresolution and higher dimensional DWT

Rather than simply applying the wavelet transform at a single level the process is commonly repeated to give a multiresolution analysis. For the DWT, multiresolution is implemented as the pyramid (or cascade) algorithm. Applying the DWT at a given level, L, the detail coefficients (which are the output from the high pass filter) are stored while the approximation coefficients resulting from convolution with the low pass filter are passed to the next level and the processs is repeated. When the length of the initial data input is an array of length N=2J, for some integer J (and assuming that the dataset is extended by periodic repetition) this can be continued until, at level J, there is a single detail coefficient from the high pass filter. The final coefficient from the action of the low pass filter is also stored. The result is an array of coefficients of the same length, N, as the input.
For two-dimensional data sets the DWT is computed as a series of one-dimensional DWTs, first over columns of the input data, and then over rows of the intermediate result. This produces four types of output coefficients: one set of approximation coefficients and three types of detail coefficients, containing information about the horizontal, vertical and diagonal components of the input data. The approximation coefficients are the result of applying convolution and downsampling with the low pass filter over both columns and rows; the horizontal detail coefficients are the result of applying convolution and downsampling with the high pass filter over columns and then the low pass filter over rows; the vertical detail coefficients are the result of applying convolution and downsampling with the low pass filter over columns and the high pass filter over rows; and the diagonal detail coefficients are the result of applying convolution and downsampling with the high pass filter over both columns and rows. An example of the single level decomposition of an image performed using C09EAF is given in Figure 1.
Similarly, for three dimensional data sets the DWT is also computed as a series of three one-dimensional DWTs, first over columns of the input data, and then over rows of the intermediate result and finally over frames of the second intermediate result. This produces eight types of output coefficients: one set of approximation coefficients (labelled LLL since the low pass filter is applied over columns, rows and frames) and seven types of detail coefficients, labelled similarly according to whether the low pass (L) or high pass filter (H) is applied in each of the three dimensions.
As in the one-dimensional case, the multi-level DWT in two and three dimensions is also implemented as the pyramid (or cascade) algorithm, where at a given level, L, all detail coefficients are stored, while the approximation coefficients are passed as input to the next level.
The original image (top, 996×1332 pixels) is transformed using routine C09EAF into the four coefficient (approximation, horizontal, vertical and diagonal) matrices (501×669) displayed below the original. The transformation was performed using the Daubechies wavelet with four vanishing moments and half-point end extension. Note that the approximation coefficients are a very close representation of the original image, while the horizontal, vertical and diagonal features of the image are visible in the respective coefficient matrices.
Figure 1: The original image (top, 996×1332 pixels) is transformed using routine C09EAF into the four coefficient (approximation, horizontal, vertical and diagonal) matrices (501×669) displayed below the original. The transformation was performed using the Daubechies wavelet with four vanishing moments and half-point end extension. Note that the approximation coefficients are a very close representation of the original image, while the horizontal, vertical and diagonal features of the image are visible in the respective coefficient matrices.

3  Recommendations on Choice and Use of Available Routines

The one-dimensional real valued continuous wavelet transform is provided by C09BAF. It is useful for resolving discontinuities and high frequency features in a signal. It is a redundant representation of the input data containing repeated information and the set of coefficients produced as output is larger than the input data set.
The one-dimensional discrete wavelet transform at a single level is performed by C09CAF. The inverse or reconstruction is carried out by C09CBF.
The one-dimensional multi-level discrete wavelet transform is computed by C09CCF and the inverse or reconstruction is given by C09CDF.
C09AAF is provided to determine some of the input parameters for the one-dimensional discrete wavelet transform routines and must be called before the one-dimensional transform routines.
The two-dimensional discrete wavelet transform at a single level is performed by C09EAF. The inverse or reconstruction is carried out by C09EBF.
The two-dimensional multi-level discrete wavelet transform is computed by C09ECF and the inverse or reconstruction is given by C09EDF.
C09ABF is provided to determine some of the input parameters for the two-dimensional discrete wavelet transform routines and must be called before the two-dimensional transform routines.
The three-dimensional discrete wavelet transform at a single level is performed by C09FAF. The inverse or reconstruction is carried out by C09FBF.
The three-dimensional multi-level discrete wavelet transform is computed by C09FCF and the inverse or reconstruction is given by C09FDF.
C09ACF is provided to deteermine some of the input parameters for the three-dimensional discrete wavelet transform routines and must be called before the three-dimensional transform routines.

4  Functionality Index

One-dimensional 
    continuous 
        real wavelet transform C09BAF
    discrete 
        multi-level 
            inverse wavelet transform C09CDF
            wavelet transform C09CCF
        single level 
            inverse wavelet transform C09CBF
            wavelet transform C09CAF
    wavelet filter details C09AAF
Three-dimensional 
    discrete 
        multi-level 
            inverse wavelet transform C09FDF
            wavelet transform C09FCF
        single level 
            inverse wavelet transform C09FBF
            wavelet transform C09FAF
    wavelet filter details C09ACF
Two-dimensional 
    discrete 
        multi-level 
            inverse wavelet transform C09EDF
            wavelet transform C09ECF
        single level 
            inverse wavelet transform C09EBF
            wavelet transform C09EAF
    wavelet filter details C09ABF

5  Auxiliary Routines Associated with Library Routine Parameters

None.

6  Routines Withdrawn or Scheduled for Withdrawal

None.

7  References

Daubechies I (1992) Ten Lectures on Wavelets SIAM, Philadelphia
Mallat S G (1998) A Wavelet Tour of Signal Processing Academic Press
Percival D B and Walden A T (2000) Wavelet Methods for Time Series Analysis Cambridge University Press
Strang G and Nguyen T (1996) Wavelets and Filter Banks Wellesley-Cambridge Press
Vidakovic B (1999) Statistical Modeling by Wavelets John Wiley and Sons Inc.
Wickerhauser M V (1994) Adapted Wavelet Analysis from Theory to Software A K Peters Ltd

C09 Chapter Contents
C09 Chapter Introduction (PDF version)
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012