├── .gitignore ├── README.md ├── app.py ├── detect_face.py ├── example ├── haarcascade_frontalface_default.xml ├── requirements.txt └── zappa_settings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wobeng/zappa_resize_image_on_fly/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wobeng/zappa_resize_image_on_fly/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wobeng/zappa_resize_image_on_fly/HEAD/app.py -------------------------------------------------------------------------------- /detect_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wobeng/zappa_resize_image_on_fly/HEAD/detect_face.py -------------------------------------------------------------------------------- /example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wobeng/zappa_resize_image_on_fly/HEAD/example -------------------------------------------------------------------------------- /haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wobeng/zappa_resize_image_on_fly/HEAD/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | Pillow 3 | opencv-python 4 | Zappa 5 | -------------------------------------------------------------------------------- /zappa_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wobeng/zappa_resize_image_on_fly/HEAD/zappa_settings.json --------------------------------------------------------------------------------