mirror of https://github.com/vladmandic/human
remove unnecessary config flags
parent
0b8afcd514
commit
f981107e84
|
@ -1,6 +1,6 @@
|
||||||
# @vladmandic/human
|
# @vladmandic/human
|
||||||
|
|
||||||
Version: **0.40.7**
|
Version: **0.40.8**
|
||||||
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,7 +9,10 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### **HEAD -> main** 2021/03/06 mandic00@live.com
|
### **HEAD -> main** 2021/03/08 mandic00@live.com
|
||||||
|
|
||||||
|
|
||||||
|
### **0.40.7** 2021/03/06 mandic00@live.com
|
||||||
|
|
||||||
- implemented 3d face angle calculations
|
- implemented 3d face angle calculations
|
||||||
|
|
||||||
|
|
|
@ -130,7 +130,6 @@ config = {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
modelPath: '../models/facemesh.json',
|
modelPath: '../models/facemesh.json',
|
||||||
inputSize: 192, // fixed value
|
inputSize: 192, // fixed value
|
||||||
returnRawData: false, // in addition to standard mesh and box values, return raw normalized values as well
|
|
||||||
},
|
},
|
||||||
|
|
||||||
iris: {
|
iris: {
|
||||||
|
|
|
@ -12,9 +12,9 @@ result = {
|
||||||
faceConfidence // <number> confidence in detection box after running mesh
|
faceConfidence // <number> confidence in detection box after running mesh
|
||||||
boxConfidence // <number> confidence in detection box before running mesh
|
boxConfidence // <number> confidence in detection box before running mesh
|
||||||
box, // <array [x, y, width, height]>
|
box, // <array [x, y, width, height]>
|
||||||
rawBox, // normalized values for box, only set if returnRawData is set
|
rawBox, // normalized values for box
|
||||||
mesh, // <array of 3D points [x, y, z]> 468 base points & 10 iris points
|
mesh, // <array of 3D points [x, y, z]> 468 base points & 10 iris points
|
||||||
rawMesh, // normalized values for box, only set if returnRawData is set
|
rawMesh, // normalized values for box
|
||||||
annotations, // <list of object { landmark: array of points }> 32 base annotated landmarks & 2 iris annotations
|
annotations, // <list of object { landmark: array of points }> 32 base annotated landmarks & 2 iris annotations
|
||||||
iris, // <number> relative distance of iris to camera, multiple by focal lenght to get actual distance
|
iris, // <number> relative distance of iris to camera, multiple by focal lenght to get actual distance
|
||||||
age, // <number> estimated age
|
age, // <number> estimated age
|
||||||
|
|
Loading…
Reference in New Issue