NAG FL Interface
C09 (Wav)
Wavelet Transforms

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 Maximal Overlap DWT (MODWT) together with its inverse and the multi-level MODWT with inverse are provided for one dimension. The choice of wavelet for CWT includes the Morlet wavelet and derivatives of a Gaussian while the DWT and MODWT offer 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 xt 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. The MODWT at a single level is carried out by convolution of the filter with the input data only; no downsampling is used in the MODWT. 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 DWT reconstruction algorithm convolves the inverse filters with the wavelet coefficients previously computed together with upsampling and summation to return to the original input. The MODWT reconstructs in the same way, except without upsampling. 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 or MODWT 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:
  1. (a)Zero end extension – input is entended by adding zeros at both ends.
    0 0 | x1 x2xN-1 xN | 0 0 
  2. (b)Periodic extension – input is treated as periodic.
    xN-1 xN | x1 x2xN-1 xN | x1 x2 
  3. (c)Whole-point symmetric extension – also known as ‘reflect’ extension, reflecting the input values from the end points.
    x3 x2 | x1 x2xN-1 xN | xN-1 xN-2 
  4. (d)Half-point symmetric extension – also simply known as ‘symmetric’ extension, repeating the end points and reflecting from locations halfway between the end point and its repeat.
    x2 x1 | x1 x2xN-1 xN | xN xN-1 
Each of these end extension methods are available for the DWT. Only the periodic end extension is currently available for the MODWT.

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 the multi-level MODWT it is, in theory, possible to continue for any number of levels. However, in practice it is common to not exceed log2N levels in order to avoid scales that exceed the length of the input data, N. This restriction is enforced for the one-dimensional mutli-level MODWT routine in this chapter.
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.
The original image (top, 996×1332 pixels) is transformed using routine 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.
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. For the three-dimensional DWT this process is represented by Figure 2.
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 three-dimensional DWT filter bank. The original input is downsampled by 2 and the high pass (H) and low pass (L) filters are applied along columns. This process is repeated along the rows and then frames to produce 8 sets of output coefficients – one set of approximation coefficients and 7 sets of detail coefficients.
Figure 2: The three-dimensional DWT filter bank. The original input is downsampled by 2 and the high pass (H) and low pass (L) filters are applied along columns. This process is repeated along the rows and then frames to produce 8 sets of output coefficients – one set of approximation coefficients and 7 sets of detail coefficients.

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. The discrete wavelet transform is widely used for image processing and data compression.
The one-dimensional maximal overlap discrete wavelet transform at a single level is performed by c09daf. The inverse or reconstruction is carried out by c09dbf.
The one-dimensional multi-level maximal overlap discrete wavelet transform is performed by c09dcf. The inverse or reconstruction routine is c09ddf. The maximal overlap discrete wavelet transform overcomes the lack of translation invariance inherent in the DWT, and thus there are advantages to using the MODWT when carrying out multiresolution analysis.
c09aaf is provided to determine some of the input arguments for the one-dimensional discrete wavelet transform and maximal overlap 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.
c09ecf and c09edf use a one-dimensional array to store the discrete wavelet transform coefficients. These may be extracted into two-dimensional arrays using c09eyf. A complementary routine c09ezf allows for the insertion of coefficients held in a two-dimensional array back into the one-dimensional array.
c09abf is provided to determine some of the input arguments 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.
c09faf, c09fbf, c09fcf and c09fdf use a one-dimensional array to store the discrete wavelet transform coefficients. These may be extracted into three-dimensional arrays using c09fyf. A complementary routine c09fzf allows for the insertion of coefficients held in a three-dimensional array back into the one-dimensional array.
c09acf is provided to determine some of the input arguments 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
maximal overlap discrete  
multi-level  
inverse wavelet transform   c09ddf
wavelet transform   c09dcf
single level  
inverse wavelet transform   c09dbf
wavelet transform   c09daf
wavelet filter details   c09aaf
Three-dimensional  
coefficient extraction   c09fyf
coefficient insertion   c09fzf
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  
coefficient extraction   c09eyf
coefficient insertion   c09ezf
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 Arguments

None.

6 Withdrawn or Deprecated Routines

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