https://github.com/ap-atul/wavelets-ext
A re-implementation of the Wavelets package using Cython to improve the speed.
https://github.com/ap-atul/wavelets-ext
audio-denoising compression cython discrete-wavelet-transform fast-wavelet-transform wavelet wavelet-transform wavelets
Last synced: about 2 months ago
JSON representation
A re-implementation of the Wavelets package using Cython to improve the speed.
- Host: GitHub
- URL: https://github.com/ap-atul/wavelets-ext
- Owner: AP-Atul
- License: mit
- Created: 2020-11-07T07:27:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-17T17:19:35.000Z (over 4 years ago)
- Last Synced: 2024-05-21T07:19:44.272Z (about 1 year ago)
- Topics: audio-denoising, compression, cython, discrete-wavelet-transform, fast-wavelet-transform, wavelet, wavelet-transform, wavelets
- Language: Python
- Homepage: https://ap-atul.github.io/wavelet
- Size: 228 KB
- Stars: 13
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wavelets-Extension
A re-implementation of Wavelets package using Cython to improve the speed.All the functions are similar to the main Wavelets repository. The sole purpose of this project is to
be used in audio de-noising of sound files.[ref wavelet](https://github.com/AP-Atul/wavelets)
## Building
1. Install directly via pip
```console
pip install git+https://github.com/AP-Atul/wavelets-ext.git
```2. Clone the repo and run the setup
```console
git clone https://github.com/AP-Atul/wavelets-ext.git
python setup.py build_ext --inplace
```