IWT2_PO: Inverse 2-d MRA Wavelet Transform (periodized, orthogonal)

Description Usage Arguments Value See Also Examples

View source: R/IWT2_PO.R

Description

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

Usage

1
IWT2_PO(wc, L, qmf)

Arguments

wc

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

L

coarse level.

qmf

quadrature mirror filter.

Value

x 2-d signal reconstructed from wc.

See Also

FWT2_PO, MakeONFilter.

Examples

1
2
3
4
5
qmf <- MakeONFilter('Daubechies', 10)
L <- 3
x <- matrix(rnorm(128^2),ncol=128)
wc <- FWT2_PO(x, L, qmf)
xr <- IWT2_PO(wc,L,qmf)

rwavelet documentation built on Jan. 13, 2021, 10:38 a.m.