File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -1089,3 +1089,15 @@ message KeyValuePair
1089
1089
//
1090
1090
optional string value = 2 ;
1091
1091
}
1092
+
1093
+ //
1094
+ // \brief Polygon in 3 dimensions
1095
+ //
1096
+ // A polygon in 3 dimensions which contains a list of vertices.
1097
+ //
1098
+ message Polygon3d
1099
+ {
1100
+ // A list of vertices
1101
+ //
1102
+ repeated Vector3d vertex = 1 ;
1103
+ }
Original file line number Diff line number Diff line change @@ -313,4 +313,23 @@ message SensorData
313
313
// in cartesian coordinates.
314
314
//
315
315
optional LogicalDetectionData logical_detection_data = 27 ;
316
+
317
+ //
318
+ // \brief Virtual detection area of a sensor
319
+ //
320
+ // The virtual detection area describes the area the sensor can see in a best case scenario
321
+ // where no occlusion or other statistical effects are considered. It is described by a set
322
+ // of polygons.
323
+ //
324
+ message VirtualDetectionArea
325
+ {
326
+ // List of polygons. Each polygon represents a surface of the virtual detection area
327
+ // and is given with respect to the virtual sensor coordinate system.
328
+ //
329
+ repeated Polygon3d polygon = 1 ;
330
+ }
331
+
332
+ // Virtual detection area of the sensor
333
+ //
334
+ optional VirtualDetectionArea virtual_detection_area = 28 ;
316
335
}
You can’t perform that action at this time.
0 commit comments