You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -60,14 +68,22 @@ Browse to http://localhost:3000/.
60
68
61
69
## About the Package
62
70
63
-
<aname="about-face-detection"></a>
71
+
<aname="about-face-detection-ssd"></a>
64
72
65
-
### Face Detection
73
+
### Face Detection - SSD Mobilenet v1
66
74
67
-
For face detection, this project implements a SSD (Single Shot Multibox Detector) based on MobileNetV1. The neural net will compute the locations of each face in an image and will return the bounding boxes together with it's probability for each face.
75
+
For face detection, this project implements a SSD (Single Shot Multibox Detector) based on MobileNetV1. The neural net will compute the locations of each face in an image and will return the bounding boxes together with it's probability for each face. This face detector is aiming towards obtaining high accuracy in detecting face bounding boxes instead of low inference time.
68
76
69
77
The face detection model has been trained on the [WIDERFACE dataset](http://mmlab.ie.cuhk.edu.hk/projects/WIDERFace/) and the weights are provided by [yeephycho](https://github.com/yeephycho) in [this](https://github.com/yeephycho/tensorflow-face-detection) repo.
70
78
79
+
<aname="about-face-detection-mtcnn"></a>
80
+
81
+
### Face Detection & 5 Point Face Landmarks - MTCNN
82
+
83
+
MTCNN (Multi-task Cascaded Convolutional Neural Networks) represents an alternative to SSD Mobilenet v1, which offers much more room for configuration and is able to achieve much lower processing times. MTCNN is a 3 stage cascaded CNN, which simultanously returns 5 face landmark points along with the bounding boxes and scores for each face. By limiting the minimum size of faces expected in an image, MTCNN allows you to process frames from your webcam in realtime. Additionally with 2MB, the size of the weights file is only a third of the size of the quantized SSD Mobilenet v1 model (~6MB).
84
+
85
+
MTCNN has been presented in the paper [Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Networks](https://kpzhang93.github.io/MTCNN_face_detection_alignment/paper/spl.pdf) by Zhang et al. and the model weights are provided in the official [repo](https://github.com/kpzhang93/MTCNN_face_detection_alignment) of the MTCNN implementation.
86
+
71
87
<aname="about-face-recognition"></a>
72
88
73
89
### Face Recognition
@@ -78,7 +94,7 @@ The neural net is equivalent to the **FaceRecognizerNet** used in [face-recognit
78
94
79
95
<aname="about-face-landmark-detection"></a>
80
96
81
-
### Face Landmark Detection
97
+
### 68 Point Face Landmark Detection
82
98
83
99
This package implements a CNN to detect the 68 point face landmarks for a given face image.
0 commit comments