初始提交

This commit is contained in:
dengwenjie
2025-02-21 11:26:58 +08:00
commit 28f55e85cc
17 changed files with 1442 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package cn.smartjavaai.face;
/**
* @author dwj
* @date 2025/2/20
*/
public class FaceConfig {
/**
* 置信度阈值
*/
public static final float DEFAULT_CONFIDENCE_THRESHOLD = 0.85F;
/**
* 每张特征图保留的最大候选框数量
*/
public static final int MAX_FACE_LIMIT = 5000;
/**
* nms阈值:控制重叠框的合并程度
*/
public static final float NMS_THRESHOLD = 0.45F;
}