Apollo
10.0
自动驾驶开放平台
data_collection_table.proto
浏览该文件的文档.
1
syntax
=
"proto2"
;
2
3
package
apollo.dreamview;
4
5
enum
ComparisonOperator
{
6
EQUAL
= 0;
7
NOT_EQUAL
= 1;
8
GREATER_THAN
= 2;
9
GREATER_THAN_OR_EQUAL
= 3;
10
LESS_THAN
= 4;
11
LESS_THAN_OR_EQUAL
= 5;
12
}
13
14
message
Criterion
{
15
optional
string
field = 1;
16
optional
ComparisonOperator
comparison_operator = 2;
17
18
// target value: can be either a hard-coded value or a vehicle config
19
optional
float
value = 3;
20
optional
string
vehicle_config = 4;
21
}
22
23
message
Range
{
24
optional
string
name = 1;
25
repeated
Criterion
criterion = 2;
26
}
27
28
message
Feature
{
29
optional
string
name = 1;
30
repeated
Range
range = 2;
31
}
32
33
message
Scenario
{
34
repeated
Feature
feature = 1;
35
}
36
37
message
DataCollectionTable
{
38
map<string, Scenario> scenario = 1;
39
40
// For each category, this is the amount of consecutive
41
// frames needed to start incrementing the count
42
required uint32 frame_threshold = 2;
43
44
// Total number of frames that each category wants to collect
45
required uint32 total_frames = 3;
46
}
syntax
syntax
Definition
data_collection_table.proto:1
apollo::dreamview::ComparisonOperator
ComparisonOperator
Definition
data_collection_table.proto:5
apollo::dreamview::EQUAL
@ EQUAL
Definition
data_collection_table.proto:6
apollo::dreamview::NOT_EQUAL
@ NOT_EQUAL
Definition
data_collection_table.proto:7
apollo::dreamview::LESS_THAN
@ LESS_THAN
Definition
data_collection_table.proto:10
apollo::dreamview::GREATER_THAN
@ GREATER_THAN
Definition
data_collection_table.proto:8
apollo::dreamview::LESS_THAN_OR_EQUAL
@ LESS_THAN_OR_EQUAL
Definition
data_collection_table.proto:11
apollo::dreamview::GREATER_THAN_OR_EQUAL
@ GREATER_THAN_OR_EQUAL
Definition
data_collection_table.proto:9
apollo::dreamview::Criterion
Definition
data_collection_table.proto:14
apollo::dreamview::DataCollectionTable
Definition
data_collection_table.proto:37
apollo::dreamview::Feature
Definition
data_collection_table.proto:28
apollo::dreamview::Range
Definition
data_collection_table.proto:23
apollo::dreamview::Scenario
Definition
data_collection_table.proto:33
modules
dreamview
proto
data_collection_table.proto