/ctwavelet

A wavelet transform library using Haar's Lifting Scheme

Primary LanguagePython

CT Wavelet Transform Library

Build Status

A utility library for generating wavelet coefficients by using Haar Lifting Scheme.

Installation

From PyPi:

pip install ctwavelet

From Source Code:

git clone https://github.com/tahtaciburak/ctwavelet
cd ctwavelet
pip install .

Usage:

from ctwavelet import LiftingScheme
ls = LiftingScheme.LiftingScheme()
ls.apply([0,1,2,3,4,5,6,7])

coeffs = ls.get_wavelet_coeffs()
print(coeffs)

inverse_coeffs = ls.inverse(coeffs)
print(inverse_coeffs)