1、新增图片与视频活体检测

2、新增人脸属性识别(性别、年龄、口罩、姿态、眼睛状态)
3、优化检测返回与包结构
4、新增 dependencyManagement 统一依赖版本管理
This commit is contained in:
dengwenjie
2025-05-09 20:10:04 +08:00
parent 42d2943a94
commit bef574cb91
63 changed files with 3266 additions and 382 deletions

View File

@@ -1,5 +1,7 @@
package cn.smartjavaai.common.entity;
import lombok.Data;
import java.util.List;
/**
@@ -7,15 +9,15 @@ import java.util.List;
* @author dwj
* @date 2025/4/12
*/
@Data
public class DetectionResponse {
private List<DetectionRectangle> rectangleList;
private List<DetectionInfo> detectionInfoList;
public List<DetectionRectangle> getRectangleList() {
return rectangleList;
public DetectionResponse() {
}
public void setRectangleList(List<DetectionRectangle> rectangleList) {
this.rectangleList = rectangleList;
public DetectionResponse(List<DetectionInfo> detectionInfoList) {
this.detectionInfoList = detectionInfoList;
}
}