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

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

Syntax

Description

idwtper2 is a two-dimensional wavelet analysis function.

X = idwtper2(cA,cH,cV,cD,'wname') returns the single-level reconstructed approximation coefficients vector X based on approximation and details vectors cA, cH, cV, and cD at a given level, using the periodized inverse wavelet transform. 'wname' is a string containing the wavelet name (see wfilters).

Instead of giving the wavelet name, you can give the filters.

For X = idwtper2(cA,cH,cV,cD,Lo_R,Hi_R), Lo_R is the reconstruction low-pass filter and Hi_R is the reconstruction high-pass filter.

If sa = size(cA) = size(cH) = size(cV) = size(cD), then size(X) = 2*sa.

For X = idwtper2(cA,cH,cV,cD,'wname',S) or
X = idwtper2(cA,cH,cV,cD,Lo_R,Hi_R,S), S is the size of the result.

idwtper2 is the inverse function of dwtper2 in the sense the abstract statement idwtper2(dwtper2(X,'wname'),'wname') gets back to X.

Examples

Note: In general, the following abstract statement is not true: idwtper2(dwt2(X,'wname'),'wname') = X.

See Also

dwtper2

[ Previous | Help Desk | Next ]