houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 47081
7  * @version 1.0
8  * @description 规则相关检测区域信息
9  * @date 2021/2/22
10  */
11 public class CFG_DETECT_REGIONS_INFO extends NetSDKLib.SdkStructure {
12     /** 检测区域使能字段不存在时默认为TRUE */
13     public boolean bEnable;
14     /**
15      * 检测区域顶点数
16      */
17     public int nDetectRegionPoint;
18     /**
19      * 检测区域
20      */
21     public NetSDKLib.CFG_POLYGON[] stuDetectRegion = new NetSDKLib.CFG_POLYGON[20];
22
23     public CFG_DETECT_REGIONS_INFO() {
24         for (int i = 0; i < stuDetectRegion.length; i++) {
25             stuDetectRegion[i] = new NetSDKLib.CFG_POLYGON();
26         }
27     }
28 }