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

https://github.com/dsingleton/python-image-averaging

Turning many images to one average image
https://github.com/dsingleton/python-image-averaging

Last synced: 10 months ago
JSON representation

Turning many images to one average image

Awesome Lists containing this project

README

          

# Image Average

Take a directory of images and build an "average"

## Dependencies

* Python Imaging Library [http://www.pythonware.com/products/pil/]

```shell
pip install Pillow
```

## Usage

```shell
Usage: average_machine.py [options] source_dir dest_file

Options:
-h, --help show this help message and exit
-x HEIGHT, --height=HEIGHT
height of the output file
-y WIDTH, --width=WIDTH
width of the output file
```

## History

Forked from [mexitek](https://github.com/mexitek/python-image-averaging), derived from [Neil Kandalgaonkar](brevity.org)