提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 291189 |
|
7 |
* @version 1.0 |
|
8 |
* @description 人脸属性 |
|
9 |
* @date 2021/8/24 14:14 |
|
10 |
*/ |
|
11 |
public class FACE_TRAIT extends NetSDKLib.SdkStructure{ |
|
12 |
/**参考枚举 EM_SEX_TYPE */ |
|
13 |
public int emSex; // 性别 |
|
14 |
public int nAge; // 年龄 |
|
15 |
/**参考枚举 EM_HAS_GLASS */ |
|
16 |
public int emGlass; // 眼镜 |
|
17 |
/**参考枚举 EM_BEARD_STATE_TYPE */ |
|
18 |
public int emBeard; // 胡子 |
|
19 |
/** */ |
|
20 |
public byte[] szReserved = new byte[4]; |
|
21 |
/**参考枚举 EM_MASK_STATE_TYPE */ |
|
22 |
public int emMask; // 口罩 |
|
23 |
/**参考枚举 EM_FACE_TRAIT_EMOTION_TYPE */ |
|
24 |
public int emEmotion; // 表情 |
|
25 |
public NET_TIME_EX stuSnapTime=new NET_TIME_EX(); // 抓拍时间 |
|
26 |
/**参考枚举 EM_FACE_TRAIT_ALIVE_TYPE*/ |
|
27 |
public int emAlive; // 活体信息 |
|
28 |
|
|
29 |
public byte[] byReserved=new byte[1020]; // 预留字段 |
|
30 |
|
|
31 |
@Override |
|
32 |
public String toString() { |
|
33 |
return "FACE_TRAIT{" + |
|
34 |
"emSex=" + emSex + |
|
35 |
", nAge=" + nAge + |
|
36 |
", emGlass=" + emGlass + |
|
37 |
", emBeard=" + emBeard + |
|
38 |
", emMask=" + emMask + |
|
39 |
", emEmotion=" + emEmotion + |
|
40 |
", stuSnapTime=" + stuSnapTime + |
|
41 |
", emAlive=" + emAlive + |
|
42 |
'}'; |
|
43 |
} |
|
44 |
} |