Go to file
2016-03-09 16:22:18 +01:00
header forget header/wavelib.h 2016-02-28 10:17:42 +01:00
src Merge remote-tracking branch 'upstream/master' 2016-03-09 15:47:21 +01:00
test * coif1 - coif 17 added 2016-02-28 10:01:21 +01:00
unitTests some changes for cmake 2016-03-09 16:07:01 +01:00
.travis.yml USE_STATIC_BOOST has to used to define if boost is static or not 2016-03-09 16:22:18 +01:00
appveyor.yml USE_STATIC_BOOST has to used to define if boost is static or not 2016-03-09 16:22:18 +01:00
CMakeLists.txt USE_STATIC_BOOST has to used to define if boost is static or not 2016-03-09 16:22:18 +01:00
COPYRIGHT db coefficients added up to 38 2016-02-25 14:41:45 +01:00
README.md commit : DWPT and Wavelet Tree added 2016-01-29 17:09:44 +05:30
wavelib-doc.pdf commit : DWPT and Wavelet Tree added 2016-01-29 17:09:44 +05:30

wavelib

C Implementation of Wavelet Transform (DWT,SWT and MODWT) and Packet Transform ( Full Tree Decomposition and Best Basis DPWT).

Discrete Wavelet Transform Methods Implemented

DWT/IDWT A decimated Discrete Wavelet Transform implementation using implicit signal extension and up/downsampling so it is a fast implementation. A FFT based implementation is optional but will not be usually needed. Both periodic and symmetric options are available.

SWT/ISWT Stationary Wavelet Transform. It works only for signal lengths that are multiples of 2^J where J is the number of decomposition levels. For signals of other lengths see MODWT implementation.

MODWT/IMODWT Maximal Overlap Discrete Wavelet Transform is another undecimated transform. It is implemented for signals of any length but only orthogonal wavelets (Daubechies, Symlets and Coiflets) can be deployed. This implementation is based on the method laid out in "Wavelet Methods For Wavelet Analysis" by Donald Percival and Andrew Walden.

Discrete Wavelet Packet Transform Methods Implemented

WTREE A Fully Decimated Wavelet Tree Decomposition. This is a highly redundant transform and retains all coefficients at each node. This is not recommended for compression and denoising applications.

DWPT/IDWPT Is a derivative of WTREE method which retains coefficients based on entropy methods. This is a non-redundant transform and output length is of the same order as the input.

Documentation Available at - https://github.com/rafat/wavelib/wiki

Live Demo (Emscripten) - http://rafat.github.io/wavelib/

License - BSD 3-Clause

Contace - rafat.hsn@gmail.com