mirror of https://github.com/vladmandic/human
added 3d face angle output
parent
562a698dae
commit
f9a7144a87
|
@ -1,6 +1,6 @@
|
||||||
# @vladmandic/human
|
# @vladmandic/human
|
||||||
|
|
||||||
Version: **0.40.5**
|
Version: **0.40.6**
|
||||||
Description: **Human: AI-powered 3D Face Detection, Face Embedding & Recognition, Body Pose Tracking, Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction & Gesture Recognition**
|
Description: **Human: AI-powered 3D Face Detection, Face Embedding & Recognition, Body Pose Tracking, Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction & Gesture Recognition**
|
||||||
|
|
||||||
Author: **Vladimir Mandic <mandic00@live.com>**
|
Author: **Vladimir Mandic <mandic00@live.com>**
|
||||||
|
@ -9,8 +9,9 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### **HEAD -> main** 2021/03/05 mandic00@live.com
|
### **HEAD -> main** 2021/03/06 mandic00@live.com
|
||||||
|
|
||||||
|
- add curve draw output
|
||||||
|
|
||||||
### **0.40.5** 2021/03/05 mandic00@live.com
|
### **0.40.5** 2021/03/05 mandic00@live.com
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,12 @@ 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
|
||||||
|
angle: // 3d face rotation values in radians
|
||||||
|
{
|
||||||
|
roll, // roll is face lean left/right
|
||||||
|
yaw, // yaw is face turn left/right
|
||||||
|
pitch, // pitch is face move up/down
|
||||||
|
}
|
||||||
emotion: // <array of emotions>
|
emotion: // <array of emotions>
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue