├── .gitignore ├── .vscode └── settings.json ├── README.md └── app └── model ├── __pycache__ ├── __init__.cpython-38.pyc ├── detect_mask_image.cpython-36.pyc └── detect_mask_image.cpython-38.pyc ├── app.py ├── face_detector ├── deploy.prototxt └── res10_300x300_ssd_iter_140000.caffemodel ├── mask_detector.model ├── static └── app.css └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | dataset/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/README.md -------------------------------------------------------------------------------- /app/model/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /app/model/__pycache__/detect_mask_image.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/__pycache__/detect_mask_image.cpython-36.pyc -------------------------------------------------------------------------------- /app/model/__pycache__/detect_mask_image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/__pycache__/detect_mask_image.cpython-38.pyc -------------------------------------------------------------------------------- /app/model/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/app.py -------------------------------------------------------------------------------- /app/model/face_detector/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/face_detector/deploy.prototxt -------------------------------------------------------------------------------- /app/model/face_detector/res10_300x300_ssd_iter_140000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/face_detector/res10_300x300_ssd_iter_140000.caffemodel -------------------------------------------------------------------------------- /app/model/mask_detector.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/mask_detector.model -------------------------------------------------------------------------------- /app/model/static/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/static/app.css -------------------------------------------------------------------------------- /app/model/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awty-Hackclub/Mask-Detection/HEAD/app/model/templates/index.html --------------------------------------------------------------------------------