├── .github ├── FUNDING.yml └── workflows │ └── blank.yml ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── app.yaml ├── create_data.py ├── create_data.pyc ├── datasets └── vivek │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── face_recognize.py ├── face_recognize.pyc ├── haarcascade_frontalface_default.xml ├── requirements.txt └── templates ├── index.html ├── my-form.html └── style.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: vschs007 4 | 5 | -------------------------------------------------------------------------------- /.github/workflows/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/.github/workflows/blank.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/app.py -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python27 2 | api_version: 1 3 | threadsafe: true -------------------------------------------------------------------------------- /create_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/create_data.py -------------------------------------------------------------------------------- /create_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/create_data.pyc -------------------------------------------------------------------------------- /datasets/vivek/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/1.png -------------------------------------------------------------------------------- /datasets/vivek/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/10.png -------------------------------------------------------------------------------- /datasets/vivek/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/11.png -------------------------------------------------------------------------------- /datasets/vivek/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/12.png -------------------------------------------------------------------------------- /datasets/vivek/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/13.png -------------------------------------------------------------------------------- /datasets/vivek/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/14.png -------------------------------------------------------------------------------- /datasets/vivek/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/15.png -------------------------------------------------------------------------------- /datasets/vivek/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/16.png -------------------------------------------------------------------------------- /datasets/vivek/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/17.png -------------------------------------------------------------------------------- /datasets/vivek/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/18.png -------------------------------------------------------------------------------- /datasets/vivek/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/19.png -------------------------------------------------------------------------------- /datasets/vivek/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/2.png -------------------------------------------------------------------------------- /datasets/vivek/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/20.png -------------------------------------------------------------------------------- /datasets/vivek/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/21.png -------------------------------------------------------------------------------- /datasets/vivek/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/22.png -------------------------------------------------------------------------------- /datasets/vivek/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/23.png -------------------------------------------------------------------------------- /datasets/vivek/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/24.png -------------------------------------------------------------------------------- /datasets/vivek/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/25.png -------------------------------------------------------------------------------- /datasets/vivek/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/26.png -------------------------------------------------------------------------------- /datasets/vivek/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/27.png -------------------------------------------------------------------------------- /datasets/vivek/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/28.png -------------------------------------------------------------------------------- /datasets/vivek/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/29.png -------------------------------------------------------------------------------- /datasets/vivek/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/3.png -------------------------------------------------------------------------------- /datasets/vivek/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/4.png -------------------------------------------------------------------------------- /datasets/vivek/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/5.png -------------------------------------------------------------------------------- /datasets/vivek/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/6.png -------------------------------------------------------------------------------- /datasets/vivek/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/7.png -------------------------------------------------------------------------------- /datasets/vivek/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/8.png -------------------------------------------------------------------------------- /datasets/vivek/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/datasets/vivek/9.png -------------------------------------------------------------------------------- /face_recognize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/face_recognize.py -------------------------------------------------------------------------------- /face_recognize.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/face_recognize.pyc -------------------------------------------------------------------------------- /haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-contrib-python 2 | Flask==0.11.1 3 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/my-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/templates/my-form.html -------------------------------------------------------------------------------- /templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vschs007/flask-realtime-face-detection-opencv-python/HEAD/templates/style.css --------------------------------------------------------------------------------