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 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 }