diff --git a/Change-Log.md b/Change-Log.md index cc437b1..560dcaa 100644 --- a/Change-Log.md +++ b/Change-Log.md @@ -1,6 +1,6 @@ # @vladmandic/human -Version: **0.40.6** +Version: **0.40.7** 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 ** @@ -11,6 +11,10 @@ Repository: **** ### **HEAD -> main** 2021/03/06 mandic00@live.com +- implemented 3d face angle calculations + +### **0.40.6** 2021/03/06 mandic00@live.com + - add curve draw output ### **0.40.5** 2021/03/05 mandic00@live.com diff --git a/Configuration.md b/Configuration.md index 22eaea1..f465102 100644 --- a/Configuration.md +++ b/Configuration.md @@ -97,6 +97,9 @@ config = { enabled: true, // controls if specified modul is enabled // face.enabled is required for all face models: // detector, mesh, iris, age, gender, emotion + // running detector only with mesh disabled is not recommended as detector prepares list of candidates + // which are then validated and stabilized by mesh + // running detetor-only produces fast but unreliable results with false positives // (note: module is not loaded until it is required) detector: { modelPath: '../models/blazeface-back.json', // can be 'blazeface-front', 'blazeface-back' or 'faceboxes' diff --git a/Outputs.md b/Outputs.md index 89952ab..4e80832 100644 --- a/Outputs.md +++ b/Outputs.md @@ -20,7 +20,8 @@ result = { age, // estimated age gender, // 'male', 'female' embedding, // [float] vector of 192 values used for face simmilarity compare - angle: // 3d face rotation values in radians + angle: // 3d face rotation values in radians in range of -pi/2 to pi/2 which is -90 to +90 degrees + // value of 0 means center { roll, // roll is face lean left/right yaw, // yaw is face turn left/right