https://github.com/jamesoff/googlyify
Draw googly eyes on images with Amazon Rekognition
https://github.com/jamesoff/googlyify
Last synced: 4 months ago
JSON representation
Draw googly eyes on images with Amazon Rekognition
- Host: GitHub
- URL: https://github.com/jamesoff/googlyify
- Owner: jamesoff
- Created: 2018-08-19T19:55:23.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-04-15T11:13:31.000Z (about 2 years ago)
- Last Synced: 2024-05-02T04:36:59.049Z (about 2 years ago)
- Language: Python
- Size: 235 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Googlyify
Draw googly eyes on people using Amazon Rekognition.

## Prerequisites
* AWS credentials configured
* Python >= 3.9
* optional: [Poetry](https://python-poetry.org/) installed
## Setup
1. Clone repo
1. If you don't intend to work on the code
1. If you have Poetry installed, `poetry install --no-dev`
1. Else create a virtualenv and install with pip: `python -m venv .venv && source .venv/bin/activate && pip install .`
1. else if you intend to work on the code, `poetry install`
## Usage
With a suitable input file (less than 5MB, png or jpg)
```
poetry run python googlyify.py input.jpg output.jpg
```
or if using the virtualenv directly,
```
python googlyify.py input.jpg output.jpg
```
`output.jpg` is overwritten with the result.