mirror of https://github.com/vladmandic/human
full rebuild
parent
093e50b305
commit
e2aff03f71
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -9,6 +9,16 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
|
||||||
|
|
||||||
## Changelog
|
## 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
|
### **1.5.2** 2021/04/14 mandic00@live.com
|
||||||
|
|
||||||
- experimental node-wasm support
|
- experimental node-wasm support
|
||||||
|
|
|
@ -518,7 +518,7 @@ function setupMenu() {
|
||||||
human.config.face.detector.iouThreshold = parseFloat(val);
|
human.config.face.detector.iouThreshold = parseFloat(val);
|
||||||
human.config.hand.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.face.detector.rotation = val;
|
||||||
human.config.hand.rotation = val;
|
human.config.hand.rotation = val;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue