You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OSI contains an object-based environment description that uses the message format of the https://github.com/protocolbuffers/protobuf/wiki[Protocol Buffer] library.
4
+
Google developed and maintains the Protocol Buffer library.
5
+
OSI defines top-level messages that are used to exchange data between separate models.
6
+
Top-level messages define the `GroundTruth` interface, the `SensorData` interface, and – since OSI version 3.0.0 – the interfaces `SensorView`, `SensorViewConfiguration`, and `FeatureData`.
7
+
8
+
The following figure shows the interfaces and models involved in modeling a sensor.
The `HostVehicleData` interface describes the measured internal states of a traffic participant.
29
+
OSI currently provides only limited support for data structures that describe measured internal states of traffic participants.
30
+
Actuator intentions are currently not covered by OSI and must be handled using a different data description format.
31
+
32
+
All fields in an interface are set to `optional`.
33
+
`required` is not used.
34
+
This has been done to allow backward-compatible changes in the field.
35
+
Additionally, this is the default behavior in Protocol Buffer version 3 that no longer has the `required` type.
36
+
Setting all fields to `optional` thus ensures update compatibility.
37
+
However, this does not mean that it is optional to fill the field.
38
+
For the purpose of providing a complete interface, all existing fields should be set, unless not setting a field carries a specific meaning, as indicated in the accompanying comment.
39
+
40
+
All field numbers equal to or greater than 10000 are available for user-specific extensions via custom fields.
41
+
No future evolution of OSI will therefore use field numbers equal to or greater than 10000.
0 commit comments