1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.netsdk.lib.structure;
 
 
import com.netsdk.lib.NetSDKLib;
 
/** 
* @author 291189
* @description  人体拍摄角度 
* @origin autoTool
* @date 2023/05/29 11:40:44
*/
public class NET_HUMAN_ANGLE_INFO extends NetSDKLib.SdkStructure {
/** 
是否过滤启用: TRUE-下发该配置  FALSE-不下发该配置
*/
public            int                    bEnable;
/** 
需要过滤的拍摄角度类型的个数,最大值是16
*/
public            int                    nShowListNums;
/** 
需要过滤的拍摄角度类型
*/
public            int[]                    emHumanAngleShowList=new int[16];
/** 
保留字节
*/
public            byte[]                    szReserved=new byte[256];
 
public            NET_HUMAN_ANGLE_INFO(){
}
}