full rebuild

pull/280/head
Vladimir Mandic 2021-04-16 18:03:15 -04:00
parent 093e50b305
commit e2aff03f71
2 changed files with 11 additions and 1 deletions

View File

@ -9,6 +9,16 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
## 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

View File

@ -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;
});