houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib.SdkStructure;
4 /**
5  * @description 任务全局配置
6  * @author 119178
7  * @date 2021/3/16
8  */
9 public class NET_ANALYSE_TASK_GLOBAL extends SdkStructure{
10     /**
11      * 车道信息数量
12      */
13     public int                                        nLanesNum;                      
14     /**
15      * 车道信息 每个车道两条边界线
16      */
17     public    NET_ANALYSE_TASK_GLOBAL_LANES[]            stuLanes=new NET_ANALYSE_TASK_GLOBAL_LANES[8];
18     /**
19      * 标定区域个数
20      */
21     public int                                        nCalibrateArea;                    
22     /**
23      * 标定区域
24      */
25     public    NET_ANALYSE_TASK_GLOBAL_CALIBRATEAREA[]    stuCalibrateArea = new NET_ANALYSE_TASK_GLOBAL_CALIBRATEAREA[32];
26     /**
27      * 保留字节
28      */
29     public    byte[]                                    byReserved=new byte[1024];
30
31     public  NET_ANALYSE_TASK_GLOBAL(){
32         for(int i=0;i<stuLanes.length;i++){
33             stuLanes[i]=new NET_ANALYSE_TASK_GLOBAL_LANES();
34         }
35
36         for(int i=0;i<stuCalibrateArea.length;i++){
37             stuCalibrateArea[i]=new NET_ANALYSE_TASK_GLOBAL_CALIBRATEAREA();
38         }
39
40     }
41
42
43
44 }