rwavelet (version 0.4.0)

IWT3_PO: Inverse 3-d MRA wavelet transform (periodized, orthogonal).

Description

If wc is the result of a forward 3d wavelet transform, with wc <- FWT3_PO(x, L, qmf). then x <- IWT3_PO(wc, L, qmf) reconstructs x exactly qmf is a nice qmf, e.g. one made by MakeONFilter.

Usage

IWT3_PO(wc, L, qmf)

Arguments

wc

3-d wavelet transform (n by n by n array, n dyadic).

L

coarse level.

qmf

quadrature mirror filter.

Value

x 3-d signal reconstructed from wc.

Details

3-D counterpart of Donoho's IWT2_PO, original matlab code by Vicki Yang and Brani Vidakovic.

See Also

FWT3_PO, MakeONFilter.

Examples

Run this code
# NOT RUN {
qmf <- MakeONFilter('Daubechies', 10)
L <- 3
x <- array(rnorm(32^3), c(32, 32, 32))
wc <- FWT3_PO(x, L, qmf)
xr <- IWT3_PO(wc, L, qmf)
# }

Run the code above in your browser using DataCamp Workspace