Skip to content

Commit 31f2bcd

Browse files
detection when multiple spots are present integrated
1 parent 734ed80 commit 31f2bcd

12 files changed

Lines changed: 1959 additions & 1956 deletions
Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
1-
# This file defines all of the possible elements of the computation
2-
# graph for the onboard behavior stack.
3-
#
4-
# `components` lists the components in order, and defines their permissable inputs and outputs.
5-
# See AllState for attributes that can be listed as inputs or outputs.
6-
#
7-
# The actual implementation of each component must use a subset of the specified inputs
8-
# and must generate a superset of the specified outputs.
9-
components:
10-
- state_estimation:
11-
outputs: vehicle
12-
- roadgraph_update:
13-
inputs: vehicle
14-
outputs: roadgraph
15-
- obstacle_detection:
16-
inputs: vehicle
17-
outputs: obstacles
18-
- agent_detection:
19-
inputs: vehicle
20-
outputs: agents
21-
- lane_detection:
22-
inputs: [vehicle, roadgraph]
23-
outputs: vehicle_lane
24-
- parking_detection:
25-
inputs: agents
26-
outputs: [goal, obstacles]
27-
- sign_detection:
28-
inputs: [vehicle, roadgraph]
29-
outputs: roadgraph.signs
30-
- environment_detection:
31-
inputs: vehicle
32-
outputs: environment
33-
- intent_estimation:
34-
inputs: [vehicle, roadgraph, agents]
35-
outputs: agent_intents
36-
- relations_estimation:
37-
inputs: [vehicle, roadgraph, agents, obstacles]
38-
outputs: relations
39-
- predicate_evaluation:
40-
inputs: [vehicle, roadgraph, agents, obstacles]
41-
outputs: predicates
42-
- perception_normalization:
43-
inputs: all
44-
- mission_execution:
45-
outputs: mission
46-
- route_planning:
47-
inputs: [vehicle, roadgraph, mission]
48-
outputs: route
49-
- driving_logic:
50-
inputs:
51-
outputs: intent
52-
- parking_component: # one way
53-
inputs: all
54-
outputs: mission_plan
55-
- summon_component: # one way
56-
inputs: all
57-
outputs: route
58-
- route_planning_component: # one way
59-
inputs: all
60-
outputs: route
61-
- motion_planning:
62-
inputs: all
63-
outputs: trajectory
64-
- trajectory_tracking:
65-
inputs: [vehicle, trajectory]
66-
outputs:
67-
- signaling:
68-
inputs: [intent]
69-
outputs:
1+
# This file defines all of the possible elements of the computation
2+
# graph for the onboard behavior stack.
3+
#
4+
# `components` lists the components in order, and defines their permissable inputs and outputs.
5+
# See AllState for attributes that can be listed as inputs or outputs.
6+
#
7+
# The actual implementation of each component must use a subset of the specified inputs
8+
# and must generate a superset of the specified outputs.
9+
components:
10+
- state_estimation:
11+
outputs: vehicle
12+
- roadgraph_update:
13+
inputs: vehicle
14+
outputs: roadgraph
15+
- obstacle_detection:
16+
inputs: vehicle
17+
outputs: obstacles
18+
- agent_detection:
19+
inputs: vehicle
20+
outputs: agents
21+
- lane_detection:
22+
inputs: [vehicle, roadgraph]
23+
outputs: vehicle_lane
24+
- parking_detection:
25+
inputs: agents
26+
outputs: [goal, obstacles]
27+
- sign_detection:
28+
inputs: [vehicle, roadgraph]
29+
outputs: roadgraph.signs
30+
- environment_detection:
31+
inputs: vehicle
32+
outputs: environment
33+
- intent_estimation:
34+
inputs: [vehicle, roadgraph, agents]
35+
outputs: agent_intents
36+
- relations_estimation:
37+
inputs: [vehicle, roadgraph, agents, obstacles]
38+
outputs: relations
39+
- predicate_evaluation:
40+
inputs: [vehicle, roadgraph, agents, obstacles]
41+
outputs: predicates
42+
- perception_normalization:
43+
inputs: all
44+
- mission_execution:
45+
outputs: mission
46+
- route_planning:
47+
inputs: [vehicle, roadgraph, mission]
48+
outputs: route
49+
- driving_logic:
50+
inputs:
51+
outputs: intent
52+
- parking_component: # one way
53+
inputs: all
54+
outputs: mission_plan
55+
- summon_component: # one way
56+
inputs: all
57+
outputs: route
58+
- route_planning_component: # one way
59+
inputs: all
60+
outputs: route
61+
- motion_planning:
62+
inputs: all
63+
outputs: trajectory
64+
- trajectory_tracking:
65+
inputs: [vehicle, trajectory]
66+
outputs:
67+
- signaling:
68+
inputs: [intent]
69+
outputs:

0 commit comments

Comments
 (0)