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

NAG Library Routine Document

C09FCF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

C09FCF computes the three-dimensional multi-level discrete wavelet transform (DWT). The initialization routine C09ACF must be called first to set up the DWT options.

2  Specification

SUBROUTINE C09FCF ( M, N, FR, A, LDA, SDA, LENC, C, NWL, DWTLVM, DWTLVN, DWTLVFR, ICOMM, IFAIL)
INTEGER  M, N, FR, LDA, SDA, LENC, NWL, DWTLVM(NWL), DWTLVN(NWL), DWTLVFR(NWL), ICOMM(260), IFAIL
REAL (KIND=nag_wp)  A(LDA,SDA,FR), C(LENC)

3  Description

C09FCF computes the multi-level DWT of three-dimensional data. For a given wavelet and end extension method, C09FCF will compute a multi-level transform of a three-dimensional array A, using a specified number, nl, of levels. The number of levels specified, nl, must be no more than the value lmax returned in NWL by the initialization routine C09ACF for the given problem. The transform is returned as a set of coefficients for the different levels (packed into a single array) and a representation of the multi-level structure.
The notation used here assigns level 0 to the input matrix, A. Level 1 consists of the first set of coefficients computed: the seven sets of detail coefficients are stored at this level while the approximation coefficients are used as the input to a repeat of the wavelet transform at the next level. This process is continued until, at level nl, all eight types of coefficients are stored. All coefficients are packed into a single array.

4  References

None.

5  Parameters

1:     M – INTEGERInput
On entry: the first dimension of the input data: the number of rows of each two-dimensional frame.
Constraint: this must be the same as the value M passed to the initialization routine C09ACF.
2:     N – INTEGERInput
On entry: the second dimension of the input data: the number of columns of each two-dimensional frame.
Constraint: this must be the same as the value N passed to the initialization routine C09ACF.
3:     FR – INTEGERInput
On entry: the third dimension of the input data: the number of two-dimensional frames.
Constraint: this must be the same as the value FR passed to the initialization routine C09ACF.
4:     A(LDA,SDA,FR) – REAL (KIND=nag_wp) arrayInput
On entry: the m by n by fr input three-dimensional array A.
5:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which C09FCF is called.
Constraint: LDAM.
6:     SDA – INTEGERInput
On entry: the second dimension of the array A as declared in the (sub)program from which C09FCF is called.
Constraint: SDAN.
7:     LENC – INTEGERInput
On entry: the dimension of the array C as declared in the (sub)program from which C09FCF is called.
Constraint: LENCnct, where nct is the total number of wavelet coefficients that correspond to a transform with NWL levels.
8:     C(LENC) – REAL (KIND=nag_wp) arrayOutput
On exit: the coefficients of the discrete wavelet transform.
Let qi denote the number of coefficients (of each type) at level i, for i=1,2,,nl, such that qi= DWTLVMnl-i+1× DWTLVNnl-i+1× DWTLVFRnl-i+1 . Then, letting k1=qnl and kj+1=kj+qnl-j/7+1, for j=1,2,,7nl, the coefficients are stored in C as follows:
Ci, for i=1,2,,k1
Contains the level nl approximation coefficients, anl. Note that for computational efficiency reasons these coefficients are stored as DWTLVM1× DWTLVN1× DWTLVFR1  in C.
Ci, for i=kj+1,,kj+1
Contains the level nl-j/7+1 detail coefficients. These are:
  • LLH coefficients if j mod 7=1;
  • LHL coefficients if j mod 7=2;
  • LHH coefficients if j mod 7=3;
  • HLL coefficients if j mod 7=4;
  • HLH coefficients if j mod 7=5;
  • HHL coefficients if j mod 7=6;
  • HHH coefficients if j mod 7=0,
for j=1,,7nl.
Note that for computational efficiency reasons these coefficients are stored as DWTLVFR j/7 × DWTLVM j/7 × DWTLVN j/7  in C.
See Section 9 for details of how to access each set of coefficients in order to perform extraction from C following a call to this routine, or insertion into C before a call to the three-dimensional multi-level inverse routine C09FDF.
9:     NWL – INTEGERInput
On entry: the number of levels, nl, in the multi-level resolution to be performed.
Constraint: 1NWLlmax, where lmax is the value returned in NWL (the maximum number of levels) by the call to the initialization routine C09ACF.
10:   DWTLVM(NWL) – INTEGER arrayOutput
On exit: the number of coefficients in the first dimension for each coefficient type at each level. DWTLVMi contains the number of coefficients in the first dimension (for each coefficient type computed) at the (nl-i+1)th level of resolution, for i=1,2,,nl.
11:   DWTLVN(NWL) – INTEGER arrayOutput
On exit: the number of coefficients in the second dimension for each coefficient type at each level. DWTLVNi contains the number of coefficients in the second dimension (for each coefficient type computed) at the (nl-i+1)th level of resolution, for i=1,2,,nl.
12:   DWTLVFR(NWL) – INTEGER arrayOutput
On exit: the number of coefficients in the third dimension for each coefficient type at each level. DWTLVFRi contains the number of coefficients in the third dimension (for each coefficient type computed) at the (nl-i+1)th level of resolution, for i=1,2,,nl.
13:   ICOMM(260) – INTEGER arrayCommunication Array
On entry: contains details of the discrete wavelet transform and the problem dimension as setup in the call to the initialization routine C09ACF.
On exit: contains additional information on the computed transform.
14:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry, FR=value.
Constraint: FR=value, the value of FR on initialization (see C09ACF).
On entry, M=value.
Constraint: M=value, the value of M on initialization (see C09ACF).
On entry, N=value.
Constraint: N=value, the value of N on initialization (see C09ACF).
IFAIL=2
On entry, LDA=value and M=value.
Constraint: LDAM.
On entry, SDA=value and N=value.
Constraint: SDAN.
IFAIL=3
On entry, LENC=value.
Constraint: LENCvalue, the total number of coefficents to be generated.
IFAIL=5
On entry, NWL=value.
Constraint: NWL1.
On entry, NWL=value and NWL=value in C09ACF.
Constraint: NWLNWL in C09ACF.
IFAIL=6
Either the initialization routine has not been called first or the communication array ICOMM has been corrupted.
The initialization routine was called with WTRANS='S'.
IFAIL=-999
Dynamic memory allocation failed.

7  Accuracy

The accuracy of the wavelet transform depends only on the floating point operations used in the convolution and downsampling and should thus be close to machine precision.

8  Further Comments

The example program shows how the wavelet coefficients at each level can be extracted from the output array C. Denoising can be carried out by applying a thresholding operation to the detail coefficients at every level. If cij is a detail coefficient then c^ij=cij+σεij and σεij is the transformed noise term. If some threshold parameter α is chosen, a simple hard thresholding rule can be applied as
c- ij = 0, if ​ c^ij α c^ij , if ​ c^ij > α,
taking c-ij to be an approximation to the required detail coefficient without noise, cij. The resulting coefficients can then be used as input to C09FDF in order to reconstruct the denoised signal.
See the references given in the introduction to this chapter for a more complete account of wavelet denoising and other applications.

9  Example

This example computes the three-dimensional multi-level discrete wavelet decomposition for 7×6×5 input data using the biorthogonal wavelet of order 1.1 (set WAVNAM='BIOR1.1' in C09ACF) with periodic end extension, prints a selected set of wavelet coefficients and then reconstructs and verifies that the reconstruction matches the original data.

9.1  Program Text

Program Text (c09fcfe.f90)

9.2  Program Data

Program Data (c09fcfe.d)

9.3  Program Results

Program Results (c09fcfe.r)


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

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