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();
|
}
|
}
|
}
|