Skip to content

Commit a9218d4

Browse files
tbleherStefan Cyliax
authored andcommitted
Remove LogicalLaneAssignment from non-Groundtruth objects
Signed-off-by: Thomas Bleher <thomas.tb.bleher@bmw.de>
1 parent 20c0935 commit a9218d4

File tree

5 files changed

+24
-8
lines changed

5 files changed

+24
-8
lines changed

osi_common.proto

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -447,10 +447,6 @@ message BaseStationary
447447
// The polygon is defined counter-clockwise.
448448
//
449449
repeated Vector2d base_polygon = 4;
450-
451-
// Assignment of this object to logical lanes
452-
//
453-
repeated LogicalLaneAssignment logical_lane_assignment = 5;
454450
}
455451

456452
//
@@ -573,10 +569,6 @@ message BaseMoving
573569
// The polygon is defined counter-clockwise.
574570
//
575571
repeated Vector2d base_polygon = 7;
576-
577-
// Assignment of this object to logical lanes
578-
//
579-
repeated LogicalLaneAssignment logical_lane_assignment = 9;
580572
}
581573

582574
//

osi_object.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ message StationaryObject
7979
//
8080
optional ColorDescription color_description = 6;
8181

82+
// Assignment of this object to logical lanes
83+
//
84+
repeated LogicalLaneAssignment logical_lane_assignment = 7;
85+
8286
//
8387
// \brief Classification data for a stationary object.
8488
//
@@ -483,6 +487,10 @@ message MovingObject
483487
//
484488
optional ColorDescription color_description = 11;
485489

490+
// Assignment of this object to logical lanes
491+
//
492+
repeated LogicalLaneAssignment logical_lane_assignment = 12;
493+
486494
// Definition of object types.
487495
//
488496
enum Type

osi_roadmarking.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ message RoadMarking
9090
//
9191
optional ColorDescription color_description = 5;
9292

93+
// Assignment of this object to logical lanes
94+
//
95+
repeated LogicalLaneAssignment logical_lane_assignment = 6;
96+
9397
//
9498
// \brief \c Classification data for a road surface marking.
9599
//

osi_trafficlight.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ message TrafficLight
7171
//
7272
optional ColorDescription color_description = 6;
7373

74+
// Assignment of this object to logical lanes
75+
//
76+
repeated LogicalLaneAssignment logical_lane_assignment = 7;
77+
7478
//
7579
// \brief \c Classification data for a traffic light.
7680
//

osi_trafficsign.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,10 @@ message TrafficSign
214214
//
215215
optional string model_reference = 3;
216216

217+
// Assignment of this object to logical lanes
218+
//
219+
repeated LogicalLaneAssignment logical_lane_assignment = 4;
220+
217221
//
218222
// \brief \c Classification data for a traffic sign.
219223
//
@@ -5569,6 +5573,10 @@ message TrafficSign
55695573
//
55705574
optional string model_reference = 3;
55715575

5576+
// Assignment of this object to logical lanes
5577+
//
5578+
repeated LogicalLaneAssignment logical_lane_assignment = 4;
5579+
55725580
//
55735581
// \brief \c Classification data for a supplementary traffic sign.
55745582
//

0 commit comments

Comments
 (0)