package com.nova.sankuai.domain.api.yangqianguan.vo;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* @Description 脸部真实性
|
* @Author CWR
|
* @Date 2022/4/27 21:29
|
*/
|
@Data
|
public class FaceGenuinenessVo {
|
/**
|
* 人脸照片为软件合成脸的置信度
|
* 取值[0,1]
|
*/
|
@JsonProperty("synthetic_face_confidence")
|
private Double syntheticFaceConfidence;
|
|
/**
|
* 人脸照片为软件合成脸的置信度阈值
|
* 取值[0,1]
|
*/
|
@JsonProperty("synthetic_face_threshold")
|
private Double syntheticFaceThreshold;
|
|
/**
|
* 人脸照片为面具的置信度
|
* 取值[0,1]
|
*/
|
@JsonProperty("mask_confidence")
|
private Double maskConfidence;
|
|
/**
|
* 人脸照片为面具的置信度阈值
|
* 取值[0,1]
|
*/
|
@JsonProperty("mask_threshold")
|
private Double maskThreshold;
|
|
/**
|
* 人脸照片为屏幕翻拍的置信度
|
* 取值[0,1]
|
*/
|
@JsonProperty("screen_replay_confidence")
|
private Double screenReplayConfidence;
|
|
/**
|
* 人脸照片为屏幕翻拍的置信度阈值
|
* 取值[0,1]
|
*/
|
@JsonProperty("screen_replay_threshold")
|
private Double screenReplayThreshold;
|
|
/**
|
* 是否检测出换脸攻击
|
* 只取值0或1。0表示未检测出换脸攻击,1表示检测出了换脸攻击。
|
*/
|
@JsonProperty("face_replaced")
|
private Long faceReplaced;
|
}
|