update wiki

master
Vladimir Mandic 2021-03-13 11:25:53 -05:00
parent ac5d01255f
commit cdd53841d5
2 changed files with 6 additions and 3 deletions

@ -10,6 +10,8 @@ and calculate embedding vectors for both first and second image you want to comp
To achieve quality results, it is also highly recommended to have `face.mesh` and `face.detection.rotation`
enabled as calculating feature vectors on non-quality inputs can lead to false results
Simmilarity match above 75% is considered good match while simmilarity match above 60% is considered best-guess
For example,
```js
@ -92,7 +94,7 @@ To achieve optimal result, `Human` performs following operations on an image bef
- Find precise face angle and again straighten face
- Crop again with more narrow margins
- Convert image to grayscale to avoid impact of different colorizations
- Normalize brightness to common range for all images
- Normalize brightness to full range for all images
<br>

@ -33,8 +33,9 @@ result = {
emotion, // <string> 'angry', 'disgust', 'fear', 'happy', 'sad', 'surprise', 'neutral'
}
],
tensor: // if config.face.detector.return is set to true, detector will
// return a raw tensor containing cropped image of a face
tensor: // if config.face.detector.return is set to true, detector will return
// a raw tensor containing cropped image of a face
// note that tensors must be explicitly disposed to free memory by calling tensor.dispose();
}
],
body: // <array of detected objects>