Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/groundtruth configuration message #581

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
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
39 changes: 39 additions & 0 deletions osi_groundtruthinitconfiguration.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
syntax = "proto2";

option optimize_for = SPEED;

import "osi_common.proto";
import "osi_version.proto";

package osi3;

//
// \brief The configuration settings for splitting static and dynamic
// content for performance reasons. Static content of \c GroundTruth
// can be sent at initialization, dynamic content during simulation
// as \c SensorView. What is regarded as static content is described here.
//
message GroundTruthInitConfiguration
{
// The interface version used by the sender (simulation environment).
//
optional InterfaceVersion version = 1;

// Omit static street layer
//
// The street layer, i.e. \c Lane, \c LaneBoundary and \c RoadMarking
// is regarded static and should be sent only at initialization.
//
optional bool omit_static_street_layer = 2;

// Omit static objects
//
// Objects of type \c MovingObject and \c StationaryObject which do not
// have changing attributes (e.g. changing position) during a simulation
// are regarded static and should be sent only at initialization.
//
// \note: While sending certain object at initialization and others
// at runtime, it must be ensured that each object still has a unique id.
//
optional bool omit_static_objects = 3;
}
9 changes: 9 additions & 0 deletions osi_sensorviewconfiguration.proto
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,15 @@ message SensorViewConfiguration
// Unit: s
optional Timestamp simulation_start_time = 10;

// Omit Static Information
//
// This flag specifies whether \c GroundTruth information that
// was already provided using a GroundTruthInit parameter
// at initialization time shall be omitted from the \c SensorView
// ground truth information.
//
optional bool omit_static_information = 11;

// Generic Sensor View Configuration(s).
//
// \note OSI uses singular instead of plural for repeated field names.
Expand Down