Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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')

```