Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions osi_detectedobject.proto
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ message DetectedMovingObject
//
// \note The bounding box does NOT includes mirrors for vehicles.
// \note The parent frame of \c base is the sensor's vehicle frame.
// \note The height includes the ground_clearance. It always goes from the
// top to the ground.
//
optional BaseMoving base = 2;

Expand Down
13 changes: 8 additions & 5 deletions osi_object.proto
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ message MovingObject
// The base parameters of the vehicle.
//
// \note The bounding box does NOT include side mirrors for vehicles.
// \note The height includes the ground_clearance. It always goes from the
// top to the ground.
//
optional BaseMoving base = 2;

Expand Down Expand Up @@ -442,11 +444,12 @@ message MovingObject
//
optional Vector3d bbcenter_to_front = 5;

// Static minimal distance in m of under-body plane to ground
// surface plane (i.e. disregarding driving dynamic effects or road
// surface effects) under neutral load conditions. Can be useful to
// approximate the clear area under a vehicle that a sensor can see
// through.
// Static minimal distance or space from the lowest point of the vehicle's
// body to the surface plane below it under neutral load conditions. This
// distance disregards, for example, driving-dynamic effects or
// road-surface effects. Can be useful to approximate the clearance area
// under a vehicle that a sensor can see through.
// \note \c ground_clearance is included in the bounding box height.
//
optional double ground_clearance = 6;

Expand Down