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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib.SdkStructure;
/**
 * @description 任务全局配置
 * @author 119178
 * @date 2021/3/16
 */
public class NET_ANALYSE_TASK_GLOBAL extends SdkStructure{
    /**
     * 车道信息数量
     */
    public int                                        nLanesNum;                      
    /**
     * 车道信息 每个车道两条边界线
     */
    public    NET_ANALYSE_TASK_GLOBAL_LANES[]            stuLanes=new NET_ANALYSE_TASK_GLOBAL_LANES[8];
    /**
     * 标定区域个数
     */
    public int                                        nCalibrateArea;                    
    /**
     * 标定区域
     */
    public    NET_ANALYSE_TASK_GLOBAL_CALIBRATEAREA[]    stuCalibrateArea = new NET_ANALYSE_TASK_GLOBAL_CALIBRATEAREA[32];
    /**
     * 保留字节
     */
    public    byte[]                                    byReserved=new byte[1024];
 
    public  NET_ANALYSE_TASK_GLOBAL(){
        for(int i=0;i<stuLanes.length;i++){
            stuLanes[i]=new NET_ANALYSE_TASK_GLOBAL_LANES();
        }
 
        for(int i=0;i<stuCalibrateArea.length;i++){
            stuCalibrateArea[i]=new NET_ANALYSE_TASK_GLOBAL_CALIBRATEAREA();
        }
 
    }
 
 
 
}