houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib.NET_POLY_POINTS;
4 import com.iailab.netsdk.lib.NetSDKLib.SdkStructure;
5 /**
6  * @description 任务模块配置
7  * @author 119178
8  * @date 2021/3/16
9  */
10 public class NET_ANALYSE_TASK_MODULE extends SdkStructure{
11     /**
12      * 规则特定的尺寸过滤器
13      */
14     public    NET_CFG_SIZEFILTER_INFO                 stuSizeFileter=new NET_CFG_SIZEFILTER_INFO();
15     /**
16      * 排除区域
17      */
18     public    NET_POLY_POINTS[]                        stuExcludeRegion=new NET_POLY_POINTS[10];
19     /**
20      * 排除区域数
21      */
22     public    int                                        nExcludeRegionNum;    
23     /**
24      * 保留字节
25      */
26     public    byte[]                                    byReserved = new byte[1020];
27
28     public NET_ANALYSE_TASK_MODULE(){
29
30         for(int i=0;i<stuExcludeRegion.length;i++){
31             stuExcludeRegion[i]=new NET_POLY_POINTS();
32         }
33
34     }
35
36 }