-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c42773
commit f18eecd
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
# Face Mask Detection | ||
|
||
Deep Learning Framework that detects faces and predicts presence of masks. | ||
The project is about the development of an algorithm that could help in controlling the use of masks in public places by the analysis of video footage, photos, etc. | ||
|
||
## Acknowledgements | ||
|
||
The code constitutes an implementation of the approach proposed by [Joshi et al.](https://ieeexplore.ieee.org/abstract/document/9242625) | ||
|
||
## Framework | ||
|
||
### Face Detection | ||
|
||
The goal is to detect person faces from images taken in a wild environment. For this purpose [<b>MTCNN</b>](https://github.com/ipazc/mtcnn) was used: a Convolutional Neural Network that exploits multi-task learning to integrate face detection and face alignment. | ||
MTCNN was evaluated on [<i>Face Mask Dataset</i>](https://www.kaggle.com/datasets/aditya276/face-mask-dataset-yolo-format) that contains 924 images of people with and without mask (```FaceMaskDetection_main.ipynb```). | ||
|
||
| Recall | Precision | F1 | | ||
| ------ | --------- | -- | | ||
| 74.4% | 82.8% |78.4%| |