Skip to content

tahtaciburak/ctwavelet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

About

A wavelet transform library using Haar's Lifting Scheme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages