Skip to content

Commit 916e4f4

Browse files
0815-codepmai
authored andcommitted
Add StationaryObjectClassification including assigned_lane_id and assigned_lane_percentage
Signed-off-by: Schloemicher, Thomas AVL,AT <thomas.schloemicher@avl.com>
1 parent e14578f commit 916e4f4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

osi_object.proto

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

82+
// Specific information about the classification of stationary objects.
83+
//
84+
optional StationaryObjectClassification stationary_object_classification = 7;
85+
86+
//
87+
// \brief Information for the classification of stationary objects.
88+
//
89+
message StationaryObjectClassification
90+
{
91+
// The IDs of the lanes that this object is assigned to.
92+
//
93+
// \note Might be multiple if the object streches over multiple lanes.
94+
//
95+
// \note OSI uses singular instead of plural for repeated field names.
96+
//
97+
repeated Identifier assigned_lane_id = 1;
98+
99+
// Percentage value of the object width in the corresponding lane.
100+
//
101+
// \note Might be multiple if the object streches over multiple lanes.
102+
//
103+
// \note OSI uses singular instead of plural for repeated field names.
104+
//
105+
repeated double assigned_lane_percentage = 2;
106+
}
107+
82108
//
83109
// \brief Classification data for a stationary object.
84110
//

0 commit comments

Comments
 (0)