mirror of
https://github.com/geekwenjie/SmartJavaAI.git
synced 2026-09-14 22:18:42 +00:00
1、新增图片与视频活体检测
2、新增人脸属性识别(性别、年龄、口罩、姿态、眼睛状态) 3、优化检测返回与包结构 4、新增 dependencyManagement 统一依赖版本管理
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user