houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 马赛克隐私遮挡块的能力集
8  * @date 2022/07/21 13:40:56
9  */
10 public class NET_MOSAIC_MASKING_CAPS extends NetSDKLib.SdkStructure {
11     /**
12      * 是否支持马赛克隐私遮挡块
13      */
14     public int bSupport;
15     /**
16      * 系统支持的最大马赛克遮挡块个数
17      */
18     public int nMaxNum;
19     /**
20      * 支持的遮挡块形状个数
21      */
22     public int nSupportTypeNum;
23     /**
24      * 支持的遮挡块形状,数组int值,参考枚举{@link EM_PRIVACY_MASKING_TYPE}
25      */
26     public int[] emSupportType = new int[8];
27     /**
28      * 系统支持的多边形遮挡块最大顶点数(SupportType支持"Polygon"时该能力有效)
29      */
30     public int nMaxPolygonPoints;
31     /**
32      * 支持的马赛克类型个数
33      */
34     public int nSupportMosaicTypeNum;
35     /**
36      * 支持的马赛克类型(SetMosaicSupport为true时该能力有效,没有该项配置时默认支持24x24大小马赛克)
37      */
38     public int[] nSupportMosaicType = new int[8];
39     /**
40      * 保留字节
41      */
42     public byte[] byReserved = new byte[128];
43
44     public NET_MOSAIC_MASKING_CAPS() {
45     }
46 }