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
package com.netsdk.lib.structure;
 
import com.netsdk.lib.NetSDKLib;
 
/**
 * @author 47081
 * @version 1.0
 * @description 规则相关检测区域信息
 * @date 2021/2/22
 */
public class CFG_DETECT_REGIONS_INFO extends NetSDKLib.SdkStructure {
    /** 检测区域使能字段不存在时默认为TRUE */
    public boolean bEnable;
    /**
     * 检测区域顶点数
     */
    public int nDetectRegionPoint;
    /**
     * 检测区域
     */
    public NetSDKLib.CFG_POLYGON[] stuDetectRegion = new NetSDKLib.CFG_POLYGON[20];
 
    public CFG_DETECT_REGIONS_INFO() {
        for (int i = 0; i < stuDetectRegion.length; i++) {
            stuDetectRegion[i] = new NetSDKLib.CFG_POLYGON();
        }
    }
}