Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johanbook/haarwvl
Image compression using Haar Wavelets
https://github.com/johanbook/haarwvl
haar-wavelets image-compression python
Last synced: about 2 months ago
JSON representation
Image compression using Haar Wavelets
- Host: GitHub
- URL: https://github.com/johanbook/haarwvl
- Owner: johanbook
- License: gpl-3.0
- Created: 2018-05-07T08:03:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T08:50:21.000Z (about 2 years ago)
- Last Synced: 2023-08-08T12:22:16.377Z (over 1 year ago)
- Topics: haar-wavelets, image-compression, python
- Language: Python
- Homepage:
- Size: 8.63 MB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
2018-05-07
# haarwvl
**Björn Annby, Johan Book, Frank Johansson and David Linehan**A project done in the course NUMA01 on image compression using Haar wavelets.
#### Install
The package can be installed using `pipenv install`. If you do not have pipenv it can be installed using`pip install pipenv`.#### Usage
```python
from haarwvl import Imageimage = Image('image.png')
image.compress()
image.save('compressed_image.png')```