Skip to content

Commit 2740f2d

Browse files
Update Definition
and add notes
1 parent 75fd624 commit 2740f2d

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

osi_common.proto

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -325,18 +325,17 @@ message BaseMoving
325325
//
326326
optional Orientation3d orientation = 3;
327327

328-
// The relative velocity of the moving object w.r.t. its parent frame and
329-
// parent velocity.
330-
// The velocity becomes global/absolute if the parent frame does not move.
328+
// The relative velocity of the moving object w.r.t. the parent frame,
329+
// noted in the parent frame. The velocity becomes global/absolute if
330+
// the parent frame does not move."
331331
//
332332
// <tt>#position (t) := #position (t-dt)+ #velocity *dt</tt>
333333
//
334334
optional Vector3d velocity = 4;
335335

336-
// The relative acceleration of the moving object w.r.t. its parent frame
337-
// and parent acceleration.
338-
// The acceleration becomes global/absolute if the parent frame is not
339-
// accelerating.
336+
// The relative acceleration of the moving object w.r.t. its parent frame,
337+
// noted in the parent frame. The acceleration becomes global/absolute if
338+
// the parent frame is not accelerating.
340339
//
341340
// <tt> #position (t) := #position (t-dt)+ #velocity *dt+ #acceleration /2*dt^2</tt>
342341
//
@@ -346,7 +345,7 @@ message BaseMoving
346345

347346
// The relative orientation rate of the moving object w.r.t. its parent
348347
// frame and parent orientation rate in the center point of the bounding box
349-
// (origin of the bounding box frame).
348+
// (origin of the bounding box frame), noted in the parent frame.
350349
//
351350
// <tt>Rotation_yaw_pitch_roll(#orientation (t)) := Rotation_yaw_pitch_roll(#orientation_rate *dt)*Rotation_yaw_pitch_roll(#orientation (t-dt))</tt>
352351
//

osi_detectedobject.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,16 @@ message DetectedMovingObject
149149
// The base parameters of the moving object.
150150
//
151151
// \note The bounding box does NOT includes mirrors for vehicles.
152+
// \note The parent frame of \c base is the sensor's vehicle frame.
152153
//
153154
optional BaseMoving base = 2;
154155

155156
// The root mean squared error of the base parameters of the detected
156157
// moving object (e.g. car). \c MovingObject::base has to be
157158
// identical for all \c #candidate moving objects.
158159
//
160+
// \note The parent frame of \c base is the sensor's vehicle frame.
161+
//
159162
optional BaseMoving base_rmse = 3;
160163

161164
// Reference point location specification of the sensor measurement

osi_sensordata.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ message SensorData
134134
// \note This value is only set by sensors that are able to
135135
// provide an own estimation of the host vehicle location.
136136
// \note Note that dimension and base_polygon need not be set.
137+
// \note The parent frame of \c host_vehicle_location is the sensor frame.
137138
//
138139
optional BaseMoving host_vehicle_location = 3;
139140

@@ -142,6 +143,7 @@ message SensorData
142143
// \note This value is only set by sensors that are able to
143144
// provide an own estimation of the host vehicle location.
144145
// \note Note that dimension and base_polygon need not be set.
146+
// \note The parent frame of \c host_vehicle_location_rmse is the sensor frame.
145147
//
146148
optional BaseMoving host_vehicle_location_rmse = 4;
147149

0 commit comments

Comments
 (0)