https://github.com/thoppe/greasepaint
A python library to manipulate the faces. Think snapchat but weirder.
https://github.com/thoppe/greasepaint
deep-learning image-processing makeup makeup-api python
Last synced: 4 months ago
JSON representation
A python library to manipulate the faces. Think snapchat but weirder.
- Host: GitHub
- URL: https://github.com/thoppe/greasepaint
- Owner: thoppe
- Created: 2019-05-09T05:06:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-16T20:42:32.000Z (about 7 years ago)
- Last Synced: 2025-12-25T15:10:41.495Z (6 months ago)
- Topics: deep-learning, image-processing, makeup, makeup-api, python
- Language: HTML
- Homepage: https://thoppe.github.io/greasepaint/
- Size: 3.79 MB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Greasepaint
A python library to manipulate the faces. Think snapchat but weirder.
[](https://pypi.python.org/pypi/greasepaint)
pip install greasepaint
## Examples






 
Simple example
import greasepaint as gp
gp.eyeliner('tessa1.jpg').show().save('tessa_liner.jpg')
gp.eyeshadow('tessa1.jpg', color='b').show().save('tessa_shadow.jpg')
### Dev Notes:
+ Update the version number in `greasepaint/_version.py`
+ Test release, check coverage, and lint
+ Push the release to [pypi live](https://pypi.org/project/pixelhouse/)
```
fab lint
fab test
rm dist/ -rvf && python setup.py sdist
twine upload -r test dist/*
twine upload dist/*
```