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

@@ -0,0 +1,17 @@
package cn.smartjavaai.face.context;
import com.seeta.sdk.*;
/**
* @author dwj
* @date 2025/5/8
*/
public class PredictorContext {
public GenderPredictor genderPredictor;
public AgePredictor agePredictor;
public EyeStateDetector eyeStateDetector;
public MaskDetector maskDetector;
public PoseEstimator poseEstimator;
}