Remove unused minFaceSize

This commit is contained in:
Manav Rathi 2024-04-10 14:52:23 +05:30
parent 3eb95bd822
commit 71e839e9c4
No known key found for this signature in database
2 changed files with 0 additions and 2 deletions

View file

@ -13,7 +13,6 @@ export const DEFAULT_ML_SYNC_CONFIG: MLSyncConfig = {
imageSource: "Original",
faceDetection: {
method: "YoloFace",
minFaceSize: 32,
},
faceCrop: {
enabled: true,

View file

@ -201,7 +201,6 @@ export interface MlFileData {
export interface FaceDetectionConfig {
method: FaceDetectionMethod;
minFaceSize: number;
}
export interface ObjectDetectionConfig {