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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ The face detector has been trained on a custom dataset of ~10K images labeled wi
97
97
98
98
### Face Detection & 5 Point Face Landmarks - MTCNN
99
99
100
-
MTCNN (Multi-task Cascaded Convolutional Neural Networks) represents an alternative face detector to SSD Mobilenet v1 and Tiny Yolo v2, which offers much more room for configuration. By tuning the input parameters, MTCNN is able to detect a wide range of face bounding box sizes. 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 the model size is only 2MB.
100
+
MTCNN (Multi-task Cascaded Convolutional Neural Networks) represents an alternative face detector to SSD Mobilenet v1 and Tiny Yolo v2, which offers much more room for configuration. By tuning the input parameters, MTCNN is able to detect a wide range of face bounding box sizes. MTCNN is a 3 stage cascaded CNN, which simultaneously 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 the model size is only 2MB.
101
101
102
102
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.
103
103
@@ -227,7 +227,7 @@ Detect faces and get the bounding boxes and scores:
227
227
// defaults parameters shown:
228
228
constforwardParams= {
229
229
scoreThreshold:0.5,
230
-
// any number or one of the predifened sizes:
230
+
// any number or one of the predefined sizes:
231
231
// 'xs' (224 x 224) | 'sm' (320 x 320) | 'md' (416 x 416) | 'lg' (608 x 608)
232
232
inputSize:'md'
233
233
}
@@ -254,7 +254,7 @@ const forwardParams = {
254
254
// the score threshold values used to filter the bounding
255
255
// boxes of stage 1, 2 and 3
256
256
scoreThresholds: [0.6, 0.7, 0.7],
257
-
//mininum face size to expect, the higher the faster processing will be,
257
+
//minimum face size to expect, the higher the faster processing will be,
0 commit comments