Closed ceyxasm closed 1 month ago
Hey @vladmandic Human only detecting only single faces.
The following image is from main-demo
I get similar result when I use the library with my own code. PFA my human config:
const humanConfig = { modelBasePath: '/model/', backend: 'wasm', filter: { enabled: false, equalization: false, flip: false }, face: { enabled: true, detector: { rotation: false, skipFrames: 30, return: true }, mesh: {enabled: false}, attention: {enabled: true}, iris: {enabled: false}, description: {enabled: false}, emotion: { enabled: false, skipFrames: 30, } }, body: { enabled: false }, hand: { enabled: false }, gesture: { enabled: false }, object: { enabled: false }, segmentation: { enabled: false }, debug: DEBUG, };
that is just the default configuration - set it to any number of people you want:
{ face: { detector: { maxDetected: 10 } } }
Hey @vladmandic Human only detecting only single faces.
The following image is from main-demo
I get similar result when I use the library with my own code. PFA my human config: