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
- Host: GitHub
- URL: https://github.com/dsingleton/python-image-averaging
- Owner: dsingleton
- Created: 2014-06-13T14:01:20.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-19T21:02:01.000Z (almost 12 years ago)
- Last Synced: 2025-01-15T02:37:00.607Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 199 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)