feat(web): add setting for minimum face count for face detection (#4128)

* feat: add setting for minimum face count for face detection

Adds the minimum face count setting to the web interface to
circumvent detection of strangers and random background people
if desired.

* fix: codestyle, remove max for face count
This commit is contained in:
GenericGuy 2023-09-18 06:05:35 +02:00 committed by GitHub
parent 40b802a5a9
commit 94cbbf3c4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 68 additions and 5 deletions

View file

@ -2152,6 +2152,12 @@ export interface RecognitionConfig {
* @memberof RecognitionConfig
*/
'maxDistance': number;
/**
*
* @type {number}
* @memberof RecognitionConfig
*/
'minFaces': number;
/**
*
* @type {number}