Closed okeoke85 closed 2 years ago
first photo is just a washout, there are no faces there at all, don't even want to try to detect that.
second photo is just really blurry when you look at it (even the girl in the foreground is blurry, not just background).
using a bit of sharpening and it does detect multiple people.
and if you're running in browser, you can use built-in filters in human
to do that. but if you're running in node, then you have to take care of the photo quality before running detection.
Thank you.
Hey @vladmandic I feel that no, it is indeed detecting only single faces.
The following image is from main-demo
I get similar result when I use the library, 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,
};
Hello Vlad,
I hope you are well, i can't get multiple face result, it always return wit 1 faceresult from the images below, i have tried it with your demo application as well, maybe it is about options, it would be great if i can get help.
Best wishes.
Image1;
Image2;
I use human.detect
const result: vladHuman.Result = await human.detect(tensor) as vladHuman.Result;
To get tensor i use;
Options;