Skip to content

Commit 43dd7fe

Browse files
authored
just fixed some small typos
1 parent 7126f5c commit 43dd7fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ The face detector has been trained on a custom dataset of ~10K images labeled wi
9797

9898
### Face Detection & 5 Point Face Landmarks - MTCNN
9999

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.
101101

102102
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.
103103

@@ -227,7 +227,7 @@ Detect faces and get the bounding boxes and scores:
227227
// defaults parameters shown:
228228
const forwardParams = {
229229
scoreThreshold: 0.5,
230-
// any number or one of the predifened sizes:
230+
// any number or one of the predefined sizes:
231231
// 'xs' (224 x 224) | 'sm' (320 x 320) | 'md' (416 x 416) | 'lg' (608 x 608)
232232
inputSize: 'md'
233233
}
@@ -254,7 +254,7 @@ const forwardParams = {
254254
// the score threshold values used to filter the bounding
255255
// boxes of stage 1, 2 and 3
256256
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,
258258
// but smaller faces won't be detected
259259
minFaceSize: 20
260260
}
@@ -397,4 +397,4 @@ const fullFaceDescription0 = fullFaceDescriptions[0]
397397
console.log(fullFaceDescription0.detection) // bounding box & score
398398
console.log(fullFaceDescription0.landmarks) // face landmarks
399399
console.log(fullFaceDescription0.descriptor) // face descriptor
400-
```
400+
```

0 commit comments

Comments
 (0)