Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib.SdkStructure;
4 import com.netsdk.lib.enumeration.EM_GLOBAL_LANES_LINE_TYPE;
5 /**
6  * @description 车道信息,每个车道两条边界线
7  * @author 119178
8  * @date 2021/3/16
9  */
10 public class NET_ANALYSE_TASK_GLOBAL_LANES extends SdkStructure{
11     /**
12      * 车道使能  
13      * 本车道规则只有在车道使能情况下才可能生效,实际应对用户在一段时期内某车道施工引起的误检
14      * 该字段缺省时默认该车道使能
15      */
16     public    int                        bEnable;    
17     /**
18      * 车道编号
19      */
20     public    int                            nNumber;
21     /**
22      * 左车道线,车道线的方向表示车道方向,沿车道方向左边的称为左车道线点的坐标坐标归一化到[0,8192)区间
23      */
24     public    com.netsdk.lib.structure.DH_POINT[]                    stuLeftLinePoint= new com.netsdk.lib.structure.DH_POINT[20];
25     /**
26      * 左车道线点个数
27      */
28     public    int                            nLeftLinePointNum;    
29     /**
30      * 左车道线的属性
31      * {@link EM_GLOBAL_LANES_LINE_TYPE}
32      */
33     public    int                         emLeftLineType;    
34     /**
35      * 右车道线,车道线的方向表示车道方向,沿车道方向左边的称为左车道线点的坐标坐标归一化到[0,8192)区间
36      */
37     public    com.netsdk.lib.structure.DH_POINT[]                    stuRightLinePoint= new com.netsdk.lib.structure.DH_POINT[20];
38     /**
39      * 右车道线点个数
40      */
41     public    int                            nRightLinePointNum;        
42     /**
43      * 右车道线的属性
44      * {@link EM_GLOBAL_LANES_LINE_TYPE}
45      */
46     public    int                           emRightLineType;
47     /**
48      * 保留字节
49      */
50     public    byte[]                      byReserved = new byte[1024];
51
52     public NET_ANALYSE_TASK_GLOBAL_LANES(){
53         for(int i=0;i<stuLeftLinePoint.length;i++){
54             stuLeftLinePoint[i]=new com.netsdk.lib.structure.DH_POINT();
55         }
56
57         for(int i=0;i<stuRightLinePoint.length;i++){
58             stuRightLinePoint[i]=new DH_POINT();
59         }
60     }
61 }