FWT2_TI {rwavelet} | R Documentation |
1. qmf
filter may be obtained from MakeONFilter
.
2. usually, length(qmf) < 2^(L+1)
.
3. To reconstruct use IWT_TI
.
FWT2_TI(x, L, qmf)
x |
2-d image (n by n real array, n dyadic). |
L |
degree of coarsest scale. |
qmf |
orthonormal quadrature mirror filter. |
TIWT
translation-invariant wavelet transform table, (3(J-L)+1)n by n.
x <- matrix(rnorm(2^2), ncol=2)
L <- 0
qmf <- MakeONFilter('Haar')
TIWT <- FWT2_TI(x, L, qmf)