mirror of
https://github.com/geekwenjie/SmartJavaAI.git
synced 2026-09-11 04:08:55 +00:00
2、人脸模块:FaceNet人脸模型也支持人脸注册,查询等功能 3、人脸模块:Seetaface6 自动下载人脸库 4、人脸模块:Seetaface6解决依赖库重复下载问题 5、人脸模块:支持手动加载人脸库 6、人脸模块:人脸识别相关功能支持更多参数
25 lines
405 B
Java
25 lines
405 B
Java
package cn.smartjavaai.common.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 检测结果
|
|
* @author dwj
|
|
* @date 2025/4/12
|
|
*/
|
|
@Data
|
|
public class DetectionResponse {
|
|
|
|
private List<DetectionInfo> detectionInfoList;
|
|
|
|
|
|
public DetectionResponse() {
|
|
}
|
|
|
|
public DetectionResponse(List<DetectionInfo> detectionInfoList) {
|
|
this.detectionInfoList = detectionInfoList;
|
|
}
|
|
}
|