├── .gitignore ├── README.md ├── cameo.py ├── filters.py └── img ├── applause.png ├── haarcascade_frontalface_default.xml ├── smile.png └── zoom.png /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumjr/cameo/HEAD/README.md -------------------------------------------------------------------------------- /cameo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumjr/cameo/HEAD/cameo.py -------------------------------------------------------------------------------- /filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumjr/cameo/HEAD/filters.py -------------------------------------------------------------------------------- /img/applause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumjr/cameo/HEAD/img/applause.png -------------------------------------------------------------------------------- /img/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumjr/cameo/HEAD/img/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /img/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumjr/cameo/HEAD/img/smile.png -------------------------------------------------------------------------------- /img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scumjr/cameo/HEAD/img/zoom.png --------------------------------------------------------------------------------