mirror of https://github.com/vladmandic/human
add debug flag
parent
c283c4a21d
commit
4091054e6d
|
@ -1,7 +1,7 @@
|
|||
|
||||
# @vladmandic/human
|
||||
|
||||
Version: **0.30.3**
|
||||
Version: **0.30.4**
|
||||
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>**
|
||||
|
@ -10,7 +10,8 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
|
|||
|
||||
## Changelog
|
||||
|
||||
### **HEAD -> main, origin/main, origin/HEAD** 2021/02/28 mandic00@live.com
|
||||
### **HEAD -> main, tag: v0.30.4, origin/main, origin/HEAD** 2021/03/01 mandic00@live.com
|
||||
- added skipinitial flag
|
||||
|
||||
### **tag: v0.30.3** 2021/02/28 mandic00@live.com
|
||||
- typo
|
||||
|
|
|
@ -35,8 +35,12 @@ All configuration details can be changed in real-time!
|
|||
```js
|
||||
config = {
|
||||
backend: 'webgl', // select tfjs backend to use
|
||||
// can be 'webgl', 'wasm', 'cpu', or 'humangl' which is a custom version of webgl
|
||||
// leave as empty string to continue using default backend
|
||||
// when backend is set outside of Human library
|
||||
wasmPath: '../assets/', // path for wasm binaries
|
||||
// only used for backend: wasm
|
||||
debug: false, // print additional status messages to console
|
||||
async: true, // execute enabled models in parallel
|
||||
// this disables per-model performance data but
|
||||
// slightly increases performance
|
||||
|
|
Loading…
Reference in New Issue