• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

auxiliary/H03-May-2022-863660

header/H28-May-2020-379260

src/H03-May-2022-12,67610,419

test/H03-May-2022-1,5071,243

unitTests/wavelibBoostTests/H03-May-2022-1,225988

.gitignoreH A D28-May-2020323 3630

.travis.ymlH A D28-May-2020771 3426

COPYRIGHTH A D28-May-20201.4 KiB1914

README.mdH A D28-May-20202.1 KiB3116

appveyor.ymlH A D28-May-2020345 1612

README.md

1[![Build Status](https://travis-ci.org/rafat/wavelib.svg?branch=master)](https://travis-ci.org/rafat/wavelib)
2
3wavelib
4=======
5
6C Implementation of Discrete Wavelet Transform (DWT,SWT and MODWT), Continuous Wavelet transform (CWT) and Discrete Packet Transform ( Full Tree Decomposition and Best Basis DWPT).
7
8Discrete Wavelet Transform Methods Implemented
9
10DWT/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.
11
12SWT/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.
13
14MODWT/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.
15
16Discrete Wavelet Packet Transform Methods Implemented
17
18WTREE 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.
19
20DWPT/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.
21
22CWT/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.
23
24Documentation Available at - https://github.com/rafat/wavelib/wiki
25
26Live Demo (Emscripten) - http://rafat.github.io/wavelib/
27
28License - BSD 3-Clause
29
30Contace - rafat.hsn@gmail.com
31