├── Myfunctions.py ├── Procfile ├── README.md ├── app.py ├── ezgif.com-gif-maker (3).gif ├── faceMask_model.ipynb ├── faceMask_model.py ├── haarcascade_frontalface_default.xml ├── mask_detector_image.py ├── mask_detector_video.py ├── masks_detector.py ├── requirements.txt ├── static ├── IMG-8129.jpg ├── ddd.jpg ├── dss.jpg ├── ezgif.com-gif-maker-_2_.gif ├── img1.jpg ├── img2.jpg ├── kkk.jpg ├── style.css ├── vvv.jpg └── xxxx.jpg └── templates ├── Error.html ├── PictureResult.html ├── RealtimeImage.html ├── UploadPicture.html ├── UploadURLImage.html └── index.html /Myfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/Myfunctions.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/app.py -------------------------------------------------------------------------------- /ezgif.com-gif-maker (3).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/ezgif.com-gif-maker (3).gif -------------------------------------------------------------------------------- /faceMask_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/faceMask_model.ipynb -------------------------------------------------------------------------------- /faceMask_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/faceMask_model.py -------------------------------------------------------------------------------- /haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /mask_detector_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/mask_detector_image.py -------------------------------------------------------------------------------- /mask_detector_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/mask_detector_video.py -------------------------------------------------------------------------------- /masks_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/masks_detector.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/IMG-8129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/IMG-8129.jpg -------------------------------------------------------------------------------- /static/ddd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/ddd.jpg -------------------------------------------------------------------------------- /static/dss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/dss.jpg -------------------------------------------------------------------------------- /static/ezgif.com-gif-maker-_2_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/ezgif.com-gif-maker-_2_.gif -------------------------------------------------------------------------------- /static/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/img1.jpg -------------------------------------------------------------------------------- /static/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/img2.jpg -------------------------------------------------------------------------------- /static/kkk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/kkk.jpg -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/style.css -------------------------------------------------------------------------------- /static/vvv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/vvv.jpg -------------------------------------------------------------------------------- /static/xxxx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/static/xxxx.jpg -------------------------------------------------------------------------------- /templates/Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/templates/Error.html -------------------------------------------------------------------------------- /templates/PictureResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/templates/PictureResult.html -------------------------------------------------------------------------------- /templates/RealtimeImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/templates/RealtimeImage.html -------------------------------------------------------------------------------- /templates/UploadPicture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/templates/UploadPicture.html -------------------------------------------------------------------------------- /templates/UploadURLImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/templates/UploadURLImage.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memudualimatou/FACE-MASK-DETECTION-WEB-APP-FLASK-PYTHON/HEAD/templates/index.html --------------------------------------------------------------------------------