├── .ebextensions └── 01_nginx.config ├── .gitignore ├── Aptfile ├── Dockerfile ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── main.py ├── opencv-files └── lbpcascade_frontalface.xml ├── requirements.txt ├── templates └── index.html └── test_ ├── Missandei.png ├── Tyrion Lannister.png ├── game_of_thrones_young.jpg ├── jon_snow.jpg └── kings_landing.jpg /.ebextensions/01_nginx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/.ebextensions/01_nginx.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/Aptfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn main:app --preload -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/main.py -------------------------------------------------------------------------------- /opencv-files/lbpcascade_frontalface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/opencv-files/lbpcascade_frontalface.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/templates/index.html -------------------------------------------------------------------------------- /test_/Missandei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/test_/Missandei.png -------------------------------------------------------------------------------- /test_/Tyrion Lannister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/test_/Tyrion Lannister.png -------------------------------------------------------------------------------- /test_/game_of_thrones_young.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/test_/game_of_thrones_young.jpg -------------------------------------------------------------------------------- /test_/jon_snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/test_/jon_snow.jpg -------------------------------------------------------------------------------- /test_/kings_landing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromevonk/flask_face_detection/HEAD/test_/kings_landing.jpg --------------------------------------------------------------------------------