feat(face): 添加低阈值检测功能

- 在 FaceConstant 中添加 FACE_LOW_THRESHOLD_PFX 常量
- 在 SearchFaceRespVo 中添加 lowThreshold 字段
- 在 FaceServiceImpl 中实现记录低阈值检测人脸的逻辑
- 在 TaskFaceServiceImpl 中添加低阈值检测的判断和结果设置
This commit is contained in:
2025-09-13 15:04:06 +08:00
parent 91e68c3272
commit bf672a8af7
4 changed files with 44 additions and 0 deletions

View File

@@ -10,4 +10,5 @@ public class SearchFaceRespVo {
private List<Long> sampleListIds;
private String searchResultJson;
private Float firstMatchRate;
private boolean lowThreshold;
}