新增目标检测功能

This commit is contained in:
dengwenjie
2025-04-13 20:33:15 +08:00
parent 4eb02c6d87
commit 241b816e7f
56 changed files with 3300 additions and 1993 deletions

View File

@@ -0,0 +1,14 @@
package cn.smartjavaai.objectdetection;
/**
* @author dwj
* @date 2025/4/7
*/
public class DetectorConfig {
/**
* 置信度阈值
*/
public static final float DEFAULT_THRESHOLD = 0.5F;
}