提交 | 用户 | 时间
|
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:35 |
|
10 |
*/ |
|
11 |
public class BODY_TRAIT extends NetSDKLib.SdkStructure { |
|
12 |
/** EM_SEX_TYPE */ |
|
13 |
public int emSex; // 性别 |
|
14 |
/** EM_AGE_GROUP_TYPE */ |
|
15 |
public int emAgeGroup; // 年龄组 |
|
16 |
/** EM_COAT_TYPE */ |
|
17 |
public int emCoatType; // 上衣类型 |
|
18 |
/** EM_TROUSERS_TYPE */ |
|
19 |
public int emTrousersType; // 裤子类型 |
|
20 |
/**EM_ANGLE_TYPE */ |
|
21 |
public int emAngle; // 人体角度 |
|
22 |
/** EM_CLOTHES_PATTERN */ |
|
23 |
public int emUpperPattern; // 上衣模式 |
|
24 |
/**EM_UNIFIED_COLOR_TYPE */ |
|
25 |
public int emTrousersColor; // 裤子颜色 |
|
26 |
/** EM_HAS_UMBRELLA */ |
|
27 |
public int emUmbrella; // 打伞 |
|
28 |
/** EM_UNIFIED_COLOR_TYPE */ |
|
29 |
public int emUmbrellaColor; // 雨伞颜色 |
|
30 |
/** EM_HAS_HOLD */ |
|
31 |
public int emHold; // 胸前抱东西 |
|
32 |
/** EM_CLOTHES_PATTERN*/ |
|
33 |
public int emTrousersPattern; // 裤子模式 |
|
34 |
/** EM_HAT_STYLE */ |
|
35 |
public int emHatType; // 帽子款式 |
|
36 |
/** EM_UNIFIED_COLOR_TYPE */ |
|
37 |
public int emHatColor; // 帽子颜色 |
|
38 |
/** EM_UPPER_TYPE */ |
|
39 |
public int emUpperType; // 上衣类型 |
|
40 |
/** EM_UNIFIED_COLOR_TYPE */ |
|
41 |
public int emCoatColor; // 上衣颜色 |
|
42 |
/**EM_HAIR_STYLE */ |
|
43 |
public int emHairStyle; // 发型 |
|
44 |
/** EM_UNIFIED_COLOR_TYPE */ |
|
45 |
public int emHairColor; // 头发颜色 |
|
46 |
/** EM_SHOES_TYPE */ |
|
47 |
public int emShoesType; // 鞋子款式 |
|
48 |
/** EM_UNIFIED_COLOR_TYPE*/ |
|
49 |
public int emShoesColor; // 鞋子颜色 |
|
50 |
/** EM_BAG_TYPE */ |
|
51 |
public int emBagType; // 箱包款式 |
|
52 |
/** EM_UNIFIED_COLOR_TYPE */ |
|
53 |
public int emBagColor; // 箱包颜色 |
|
54 |
/** EM_MASK_TYPE */ |
|
55 |
public int emMaskType; // 口罩 |
|
56 |
/** EM_UNIFIED_COLOR_TYPE */ |
|
57 |
public int emMaskColor; // 口罩颜色 |
|
58 |
public NET_TIME_EX stuSnapTime=new NET_TIME_EX(); // 抓图时间 |
|
59 |
public byte[] szReserved=new byte[1024]; // 预留字段 |
|
60 |
|
|
61 |
@Override |
|
62 |
public String toString() { |
|
63 |
return "BODY_TRAIT{" + |
|
64 |
"emSex=" + emSex + |
|
65 |
", emAgeGroup=" + emAgeGroup + |
|
66 |
", emCoatType=" + emCoatType + |
|
67 |
", emTrousersType=" + emTrousersType + |
|
68 |
", emAngle=" + emAngle + |
|
69 |
", emUpperPattern=" + emUpperPattern + |
|
70 |
", emTrousersColor=" + emTrousersColor + |
|
71 |
", emUmbrella=" + emUmbrella + |
|
72 |
", emUmbrellaColor=" + emUmbrellaColor + |
|
73 |
", emHold=" + emHold + |
|
74 |
", emTrousersPattern=" + emTrousersPattern + |
|
75 |
", emHatType=" + emHatType + |
|
76 |
", emHatColor=" + emHatColor + |
|
77 |
", emUpperType=" + emUpperType + |
|
78 |
", emCoatColor=" + emCoatColor + |
|
79 |
", emHairStyle=" + emHairStyle + |
|
80 |
", emHairColor=" + emHairColor + |
|
81 |
", emShoesType=" + emShoesType + |
|
82 |
", emShoesColor=" + emShoesColor + |
|
83 |
", emBagType=" + emBagType + |
|
84 |
", emBagColor=" + emBagColor + |
|
85 |
", emMaskType=" + emMaskType + |
|
86 |
", emMaskColor=" + emMaskColor + |
|
87 |
", stuSnapTime=" + stuSnapTime + |
|
88 |
'}'; |
|
89 |
} |
|
90 |
} |