mirror of https://github.com/vladmandic/human
fix output docs
parent
d24d9fb46e
commit
ad583a5aa9
16
Outputs.md
16
Outputs.md
|
@ -18,6 +18,13 @@ result = {
|
||||||
age, // <number> estimated age
|
age, // <number> estimated age
|
||||||
gender, // <string> 'male', 'female'
|
gender, // <string> 'male', 'female'
|
||||||
embedding, // <array>[float] vector of 192 values used for face simmilarity compare
|
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>
|
body: // <array of detected objects>
|
||||||
|
@ -36,18 +43,11 @@ result = {
|
||||||
annotations, // <array of 3D landmarks [ landmark: <array of points> ]> 5 annotated landmakrs
|
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>
|
gesture: // <array of objects object>
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
<gesture-type>: <person-number>,
|
<gesture-type>: <person-number>,
|
||||||
gesture: <gesture-string>
|
gesture: <gesture-string>
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
performance = { // performance data of last execution for each module measuredin miliseconds
|
performance = { // performance data of last execution for each module measuredin miliseconds
|
||||||
|
|
Loading…
Reference in New Issue