https://github.com/johanbook/haarwvl
Image compression using Haar Wavelets
https://github.com/johanbook/haarwvl
haar-wavelets image-compression python
Last synced: about 1 year 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 (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T08:50:21.000Z (over 3 years ago)
- Last Synced: 2025-03-27T23:11:15.887Z (about 1 year ago)
- Topics: haar-wavelets, image-compression, python
- Language: Python
- Homepage:
- Size: 8.63 MB
- Stars: 6
- 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 Image
image = Image('image.png')
image.compress()
image.save('compressed_image.png')
```