Harman Patil (Editor)

Daubechies wavelet

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Daubechies wavelet

The Daubechies wavelets, based on the work of Ingrid Daubechies, are a family of orthogonal wavelets defining a discrete wavelet transform and characterized by a maximal number of vanishing moments for some given support. With each wavelet type of this class, there is a scaling function (called the father wavelet) which generates an orthogonal multiresolution analysis.

Contents

Properties

In general the Daubechies wavelets are chosen to have the highest number A of vanishing moments, (this does not imply the best smoothness) for given support width 2A - 1. There are two naming schemes in use, DN using the length or number of taps, and dbA referring to the number of vanishing moments. So D4 and db2 are the same wavelet transform.

Among the 2A−1 possible solutions of the algebraic equations for the moment and orthogonality conditions, the one is chosen whose scaling filter has extremal phase. The wavelet transform is also easy to put into practice using the fast wavelet transform. Daubechies wavelets are widely used in solving a broad range of problems, e.g. self-similarity properties of a signal or fractal problems, signal discontinuities, etc.

The Daubechies wavelets are not defined in terms of the resulting scaling and wavelet functions; in fact, they are not possible to write down in closed form. The graphs below are generated using the cascade algorithm, a numeric technique consisting of simply inverse-transforming [1 0 0 0 0 ... ] an appropriate number of times.

Note that the spectra shown here are not the frequency response of the high and low pass filters, but rather the amplitudes of the continuous Fourier transforms of the scaling (blue) and wavelet (red) functions.

Daubechies orthogonal wavelets D2-D20 resp. db1-db10 are commonly used. The index number refers to the number N of coefficients. Each wavelet has a number of zero moments or vanishing moments equal to half the number of coefficients. For example, D2 (the Haar wavelet) has one vanishing moment, D4 has two, etc. A vanishing moment limits the wavelets ability to represent polynomial behaviour or information in a signal. For example, D2, with one moment, easily encodes polynomials of one coefficient, or constant signal components. D4 encodes polynomials with two coefficients, i.e. constant and linear signal components; and D6 encodes 3-polynomials, i.e. constant, linear and quadratic signal components. This ability to encode signals is nonetheless subject to the phenomenon of scale leakage, and the lack of shift-invariance, which raise from the discrete shifting operation (below) during application of the transform. Sub-sequences which represent linear, quadratic (for example) signal components are treated differently by the transform depending on whether the points align with even- or odd-numbered locations in the sequence. The lack of the important property of shift-invariance, has led to the development of several different versions of a shift-invariant (discrete) wavelet transform.

Construction

Both the scaling sequence (Low-Pass Filter) and the wavelet sequence (Band-Pass Filter) (see orthogonal wavelet for details of this construction) will here be normalized to have sum equal 2 and sum of squares equal 2. In some applications, they are normalised to have sum 2 , so that both sequences and all shifts of them by an even number of coefficients are orthonormal to each other.

Using the general representation for a scaling sequence of an orthogonal discrete wavelet transform with approximation order A,

a ( Z ) = 2 1 A ( 1 + Z ) A p ( Z ) , with N=2A, p having real coefficients, p(1)=1 and degree(p)=A-1,

one can write the orthogonality condition as

a ( Z ) a ( Z 1 ) + a ( Z ) a ( Z 1 ) = 4 , or equally as ( 2 X ) A P ( X ) + X A P ( 2 X ) = 2 A (*),

with the Laurent-polynomial X := 1 / 2 ( 2 Z Z 1 ) generating all symmetric sequences and X ( Z ) = 2 X ( Z ) . Further, P(X) stands for the symmetric Laurent-polynomial P ( X ( Z ) ) = p ( Z ) p ( Z 1 ) . Since X ( e i w ) = 1 c o s ( w ) and p ( e i w ) p ( e i w ) = | p ( e i w ) | 2 , P takes nonnegative values on the segment [0,2].

Equation (*) has one minimal solution for each A, which can be obtained by division in the ring of truncated power series in X,

P A ( X ) = k = 0 A 1 ( A + k 1 A 1 ) 2 k X k .

Obviously, this has positive values on (0,2)

The homogeneous equation for (*) is antisymmetric about X=1 and has thus the general solution X A ( X 1 ) R ( ( X 1 ) 2 ) , with R some polynomial with real coefficients. That the sum

P ( X ) = P A ( X ) + X A ( X 1 ) R ( ( X 1 ) 2 )

shall be nonnegative on the interval [0,2] translates into a set of linear restrictions on the coefficients of R. The values of P on the interval [0,2] are bounded by some quantity 4 A r , maximizing r results in a linear program with infinitely many inequality conditions.

To solve P ( X ( Z ) ) = p ( Z ) p ( Z 1 ) for p one uses a technique called spectral factorization resp. Fejér-Riesz-algorithm. The polynomial P(X) splits into linear factors P ( X ) = ( X μ 1 ) ( X μ N ) , N=A+1+2deg(R). Each linear factor represents a Laurent-polynomial ( X ( Z ) μ ) = 1 2 Z + 1 μ 1 2 Z 1 that can be factored into two linear factors. One can assign either one of the two linear factors to p(Z), thus one obtains 2N possible solutions. For extremal phase one chooses the one that has all complex roots of p(Z) inside or on the unit circle and is thus real.

For Daubechies wavelet transform, a pair of linear filters is being used. This pair of filters should have a property which is called as quadrature mirror filter. Solving the coefficient of the linear filter c i 's using the quadrature mirror filter property results in the below solution for the coefficient values for filter of order 4. c 0 = 1 + 3 4 2 c 1 = 3 + 3 4 2 c 2 = 3 3 4 2 c 3 = 1 3 4 2

The scaling sequences of lowest approximation order

Below are the coefficients for the scaling functions for D2-20. The wavelet coefficients are derived by reversing the order of the scaling function coefficients and then reversing the sign of every second one, (i.e., D4 wavelet = {-0.1830127, -0.3169873, 1.1830127, -0.6830127}). Mathematically, this looks like b k = ( 1 ) k a N 1 k where k is the coefficient index, b is a coefficient of the wavelet sequence and a a coefficient of the scaling sequence. N is the wavelet index, i.e., 2 for D2.

Parts of the construction are also used to derive the biorthogonal Cohen-Daubechies-Feauveau wavelets (CDFs).

Implementation

While software such as Mathematica supports Daubechies wavelets directly a basic implementation is simple in MATLAB (in this case, Daubechies 4). This implementation uses periodization to handle the problem of finite length signals. Other, more sophisticated methods are available, but often it is not necessary to use these as it only affects the very ends of the transformed signal. The periodization is accomplished in the forward transform directly in MATLAB vector notation, and the inverse transform by using the circshift() function:

Transform, D4

It is assumed that S, a column vector with an even number of elements, has been pre-defined as the signal to be analyzed. Note that the D4 coefficients are [1+sqrt(3), 3+sqrt(3), 3-sqrt(3), 1-sqrt(3)]/4.

References

Daubechies wavelet Wikipedia