Go to file
2021-04-17 08:27:34 +08:00
auxiliary update cmakelists 2021-04-16 12:04:51 +08:00
header wt2 obj added 2019-04-05 19:06:19 +05:30
src update cmakelists 2021-04-15 12:24:28 +08:00
test delete test 2021-04-07 19:17:54 +08:00
unitTests cleanup 2019-09-06 09:10:03 +05:30
.gitignore Merge branch 'master' of https://gitee.com/yizhangss/wavelib 2021-04-17 08:27:34 +08:00
.travis.yml update .travis.yml 2019-02-16 07:12:51 +05:30
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 update cmakelists 2021-04-15 12:24:28 +08:00
COPYRIGHT db coefficients added up to 38 2016-02-25 14:41:45 +01:00
README.md Update README.md 2020-08-02 16:51:55 +05:30
wavelib-doc.pdf CCommit : CWT/ICWT added 2016-05-29 05:43:59 +05:30

Build Status

wavelib

C Implementation of Discrete Wavelet Transform (DWT,SWT and MODWT), Continuous Wavelet transform (CWT) and Discrete Packet Transform ( Full Tree Decomposition and Best Basis DWPT).

Discrete Wavelet Transform Methods Implemented

DWT/IDWT and DWT2/IDWT2 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 and SWT2/ISWT2 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 and MODWT2/IMODWT2 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.

CWT/ICWT C translation ( with some modifications) of Continuous Wavelet Transform Software provided by C. Torrence and G. Compo, and is available at URL: http://atoc.colorado.edu/research/wavelets/'. A generalized Inverse Transform with approximate reconstruction is also added.

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

Live Demo of 1D DWT and 1D CWT (Emscripten) - http://rafat.github.io/wavelib/

License - BSD 3-Clause

Contace - rafat.hsn@gmail.com