From e2aff03f71036e90b3d72e674a51cb5eedc8a3d6 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 16 Apr 2021 18:03:15 -0400 Subject: [PATCH] full rebuild --- CHANGELOG.md | 10 ++++++++++ demo/index.js | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 239f96fb..d397ce4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ Repository: **** ## Changelog +### **HEAD -> main** 2021/04/16 mandic00@live.com + + +### **origin/main** 2021/04/16 mandic00@live.com + +- added node-multiprocess demo +- fix image orientation +- flat app style +- add full nodejs test coverage + ### **1.5.2** 2021/04/14 mandic00@live.com - experimental node-wasm support diff --git a/demo/index.js b/demo/index.js index cfa9fe04..395d8cc3 100644 --- a/demo/index.js +++ b/demo/index.js @@ -518,7 +518,7 @@ function setupMenu() { human.config.face.detector.iouThreshold = parseFloat(val); human.config.hand.iouThreshold = parseFloat(val); }); - menu.process.addBool('detection rotation', human.config.face.detector, 'rotation', (val) => { + menu.process.addBool('rotation detection', human.config.face.detector, 'rotation', (val) => { human.config.face.detector.rotation = val; human.config.hand.rotation = val; });