mirror of https://github.com/vladmandic/human
fix output docs
parent
d24d9fb46e
commit
ad583a5aa9
14
Outputs.md
14
Outputs.md
|
@ -18,6 +18,13 @@ result = {
|
|||
age, // <number> estimated age
|
||||
gender, // <string> 'male', 'female'
|
||||
embedding, // <array>[float] vector of 192 values used for face simmilarity compare
|
||||
emotion: // <array of emotions>
|
||||
[
|
||||
{
|
||||
score, // <number> probabily of emotion
|
||||
emotion, // <string> 'angry', 'disgust', 'fear', 'happy', 'sad', 'surprise', 'neutral'
|
||||
}
|
||||
],
|
||||
}
|
||||
],
|
||||
body: // <array of detected objects>
|
||||
|
@ -36,13 +43,6 @@ result = {
|
|||
annotations, // <array of 3D landmarks [ landmark: <array of points> ]> 5 annotated landmakrs
|
||||
}
|
||||
],
|
||||
emotion: // <array of emotions>
|
||||
[
|
||||
{
|
||||
score, // <number> probabily of emotion
|
||||
emotion, // <string> 'angry', 'discust', 'fear', 'happy', 'sad', 'surpise', 'neutral'
|
||||
}
|
||||
],
|
||||
gesture: // <array of objects object>
|
||||
[
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue