├── .gitignore ├── .idea ├── .gitignore ├── face_mask_detection.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── Face_mask_detection_flowchart.jpg ├── README.md ├── face_mask_detection.pb └── mask_detection.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Project exclude paths 2 | /venv/ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/face_mask_detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/.idea/face_mask_detection.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /Face_mask_detection_flowchart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/Face_mask_detection_flowchart.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/README.md -------------------------------------------------------------------------------- /face_mask_detection.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/face_mask_detection.pb -------------------------------------------------------------------------------- /mask_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhand31/face_mask_detection/HEAD/mask_detection.py --------------------------------------------------------------------------------