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_COLOR_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 bSetColorSupport;
35     /**
36      * 是否支持遮挡块颜色相互独立
37      */
38     public int bSetColorIndependent;
39     /**
40      * 保留字节
41      */
42     public byte[] byReserved = new byte[128];
43
44     public NET_COLOR_MASKING_CAPS() {
45     }
46 }