Wavelet Toolbox
  Go to function:
    Search    Help Desk 
dwtper2    Examples   See Also

Single-level discrete 2-D wavelet transform (periodized).

Syntax

Description

dwtper2 is a two-dimensional wavelet analysis function.

[cA,cH,cV,cD] = dwtper2(X,'wname') computes the approximation coefficients matrix cA and details coefficients matrices cH, cV, and cD, obtained by periodized wavelet decomposition of the input matrix X.

'wname' is a string containing the wavelet name (see wfilters).

Instead of giving the wavelet name, you can give the filters. When used with three arguments: [cA,cH,cV,cD] = dwtper2(X,Lo_D,Hi_D), Lo_D is the decomposition low-pass filter and Hi_D is the decomposition high-pass filter.

If sx = size(X) then size(cA) = size(cH) = size(cV) = size(cD) = ceil(sx/2).

Examples

Algorithm

See the dwtper algorithm section.

See Also

dwt2, idwtper2

[ Previous | Help Desk | Next ]