Skip to content

Planning component design#

Purpose#

The Planning Component in autonomous driving systems plays a crucial role in generating a target trajectory (path and speed) for autonomous vehicles. It ensures safety and adherence to traffic rules, fulfilling specific missions.

This document outlines the planning requirements and design within Autoware, aiding developers in comprehending the design and extendibility of the Planning Component.

The document is divided into two parts: the first part discusses high-level requirements and design, and the latter part focuses on actual implementations and functionalities provided.

Goals and non-goals#

Our objective extends beyond merely developing an autonomous driving system. We aim to offer an "autonomous driving platform" where users can enhance autonomous driving functionalities based on their individual needs.

In Autoware, we utilize the microautonomy architecture concept, which emphasizes high extensibility, functional modularity, and clearly defined interfaces.

With this in mind, the design policy for the Planning Component is focused not on addressing every complex autonomous driving scenario (as that is a very challenging problem), but on providing a customizable and easily extendable Planning development platform. We believe this approach will allow the platform to meet a wide range of needs, ultimately solving many complex use cases.

To clarify this policy, the Goals and Non-Goals are defined as follows:

Goals:

  • The basic functions are provided so that a simple ODD can be defined
    • Before extending its functionalities, the Planning Component must provide the essential features necessary for autonomous driving. This encompasses basic operations like moving, stopping, and turning, as well as handling lane changes and obstacle avoidance in relatively safe and simple contexts.
  • The functionality is modularized for user-driven extension
    • The system is designed to adapt to various Operational Design Domains (ODDs) with extended functionalities. Modularization, akin to plug-ins, allows for creating systems tailored to diverse needs, such as different levels of autonomous driving and varied vehicular or environmental applications (e.g., Lv4/Lv2 autonomous driving, public/private road driving, large vehicles, small robots).
    • Reducing functionalities for specific ODDs, like obstacle-free private roads, is also a key aspect. This modular approach allows for reductions in power consumption or sensor requirements, aligning with specific user needs.
  • The capability is extensible with the decision of human operators
    • Incorporating operator assistance is a critical aspect of functional expansion. It means that the system can adapt to complex and challenging scenarios with human support. The specific type of operator is not defined here. It might be a person accompanying in the vehicle during the prototype development phase or a remote operator connected in emergencies during autonomous driving services.

Non-goals:

The Planning Component is designed to be extended with third-party modules. Consequently, the following are not the goals of Autoware's Planning Component:

  • To provide all user-required functionalities by default.
  • To provide complete functionality and performance characteristic of an autonomous driving system.
  • To provide performance that consistently surpasses human capabilities or ensures absolute safety.

These aspects are specific to our vision of an autonomous driving "platform" and may not apply to a typical autonomous driving Planning Component.

High level design#

This diagram illustrates the high-level architecture of the Planning Component. This represents an idealized design, and current implementations might vary. Further details on implementations are provided in the latter sections of this document.

overall-planning-architecture

Following the principles of microautonomy architecture, we have adopted a modular system framework. The functions within the Planning domain are implemented as modules, dynamically or statically adaptable according to specific use cases. This includes modules for lane changes, intersection handling, and pedestrian crossings, among others.

The Planning Component comprises several sub-components:

  • Mission Planning: This module calculates routes from the current location to the destination, utilizing map data. Its functionality is similar to that of Fleet Management Systems (FMS) or car navigation route planning.
  • Planning Modules: These modules plans the vehicle's behavior for the assigned mission, including target trajectory, blinker signaling, etc. They are divided into Behavior and Motion categories:
    • Behavior: Focuses on calculating safe and rule-compliant routes, managing decisions for lane changes, intersection entries, and stoppings at a stop line.
    • Motion: Works in cooperate with Behavior modules to determine the vehicle's trajectory, considering its motion and ride comfort. It includes lateral and longitudinal planning for route shaping and speed calculation.
  • Validation: Ensures the safety and appropriateness of the planned trajectories, with capabilities for emergency response. In cases where a planned trajectory is unsuitable, it triggers emergency protocols or generates alternative paths.

Highlights#

Key aspects of this high-level design include:

Modulation of each function#

Essential Planning functions, such as route generation, lane changes, and intersection management, are modularized. These modules come with standardized interfaces, enabling easy addition or modification. More details on these interfaces will be discussed in subsequent sections. You can see the details about how to enable/disable each module in the implementation documentation of Planning.

Separation of Mission Planning sub-component#

Mission Planning serves as a substitute for functions typically found in existing services like FMS (Fleet Management System). Adherence to defined interfaces in the high-level design facilitates easy integration with third-party services.

Separation of Validation sub-component#

Given the extendable nature of the Planning Component, ensuring consistent safety levels across all functions is challenging. Therefore, the Validation function is managed independently from the core planning modules, maintaining a baseline of safety even for arbitrary changes of the planning modules.

Interface for HMI (Human Machine Interface)#

The HMI is designed for smooth cooperation with human operators. These interfaces enable coordination between the Planning Component and operators, whether in-vehicle or remote.

Trade-offs for the separation of planning and other components#

In Autoware's overarching design, the separation of components like Planning, Perception, Localization, and Control facilitates cooperation with third-party modules. However, this separation entails trade-offs between performance and extensibility. For instance, the Perception component might process unnecessary objects due to its separation from Planning. Similarly, separating planning and control can pose challenges in accounting for vehicle dynamics during planning. To mitigate these issues, we might need to enhance interface information or increase computational efforts.

Customize features#

A significant feature of the Planning Component design is its ability to integrate with external modules. The diagram below shows various methods for incorporating external functionalities.

how-to-add-new-modules

1. Adding New Modules to the Planning Component#

Users can augment or replace existing Planning functionalities with new modules. This approach is commonly used for extending features, allowing for the addition of capabilities absent in the desired ODD or simplification of existing features.

However, adding these functionalities requires well-organized module interfaces. As of November 2023, an ideal modular system is not fully established, presenting some limitations. For more information, please refer to the Reference Implementation section Customize features in the current implementation and the implementation documentation of Planning.

2. Replacing Sub-components of Planning#

Collaboration and extension at the sub-component level may interest some users. This could involve replacing Mission Planning with an existing FMS service or incorporating a third-party trajectory generation module while utilizing the existing Validation functionality.

Adhering to the Internal interface in the planning component, collaboration and extension at this level are feasible. While complex coordination with existing Planning features may be limited, it allows for integration between certain Planning Component functionalities and external modules.

3. Replacing the Entire Planning Component#

Organizations or research entities developing autonomous driving Planning systems might be interested in integrating their proprietary Planning solutions with Autoware's Perception or Control modules. This can be achieved by replacing the entire Planning system, following the robust and stable interfaces defined between components. It is important to note, however, that direct coordination with existing Planning modules might not be possible.

Component interface#

This section describes the inputs and outputs of the Planning Component and of its internal modules. See the Planning Component Interface page for the current implementation.

Input to the planning component#

  • From Map
    • Vector map: Contains all static information about the environment, including lane connection information for route planning, lane geometry for generating a reference path, and traffic rule-related information.
  • From Perception
    • Detected object information: Provides real-time information about objects that cannot be known in advance, such as pedestrians and other vehicles. The Planning Component plans maneuvers to avoid collisions with these objects.
    • Detected obstacle information: Supplies real-time information about the location of obstacles, which is more primitive than Detected Object and used for emergency stops and other safety measures.
    • Occupancy map information: Offers real-time information about the presence of pedestrians and other vehicles and occluded area information.
    • Traffic light recognition result: Provides the current state of each traffic light in real time. The Planning Component extracts relevant information for the planned path and determines whether to stop at intersections.
  • From Localization
    • Vehicle motion information: Includes the ego vehicle's position, velocity, acceleration, and other motion-related data.
  • From System
    • Operation mode: Indicates whether the vehicle is operating in Autonomous mode.
  • From Human Machine Interface (HMI)
    • Feature execution: Allows for executing/authorizing autonomous driving operations, such as lane changes or entering intersections, by human operators.
  • From API Layer
    • Destination (Goal): Represents the final position that the Planning Component aims to reach.
    • Checkpoint: Represents a midpoint along the route to the destination. This is used during route calculation.
    • Velocity limit: Sets the maximum speed limit for the vehicle.

Output from the planning component#

  • To Control
    • Trajectory: Provides a smooth sequence of pose, twist, and acceleration that the Control Component must follow. The trajectory is typically 10 seconds long with a 0.1-second resolution.
    • Turn Signals: Controls the vehicle's turn indicators, such as right, left, hazard, etc. based on the planned maneuvers.
  • To System
    • Diagnostics: Reports the state of the Planning Component, indicating whether the processing is running correctly and whether a safe plan is being generated.
  • To Human Machine Interface (HMI)
    • Feature execution availability: Indicates the status of operations that can be executed or are required, such as lane changes or entering intersections.
    • Trajectory candidate: Shows the potential trajectory that will be executed after the user's execution.
  • To API Layer
    • Planning factors: Provides information about the reasoning behind the current planning behavior. This may include the position of target objects to avoid, obstacles that led to the decision to stop, and other relevant information.

Internal interface in the planning component#

  • Mission Planning to Scenario Planning
    • Route: Offers guidance for the path that needs to be followed from the starting point to the destination. This path is determined based on information such as lane IDs defined on the map. At the route level, it doesn't explicitly indicate which specific lanes to take, and the route can contain multiple lanes.
  • Behavior Planning to Motion Planning
    • Path: Provides a rough position and velocity to be followed by the vehicle. These path points are usually defined with an interval of about 1 meter. Although other interval distances are possible, it may impact the precision or performance of the planning component.
    • Drivable area: Defines regions where the vehicle can drive, such as within lanes or physically drivable areas. It assumes that the motion planner will calculate the final trajectory within this defined area.
  • Scenario Planning to Validation
    • Trajectory: Defines the desired positions, velocities, and accelerations which the Control Component will try to follow. Trajectory points are defined at intervals of approximately 0.1 seconds based on the trajectory velocities.
  • Validation to Control Component
    • Trajectory: Same as above but with some additional safety considerations.

Detailed design#

Supported features#

Feature Description Requirements Figure Demonstration
Route Planning Plan route from the ego vehicle position to the destination.

Reference implementation is in Mission Planner, enabled by launching the mission_planner node.
- Lanelet map (driving lanelets) route-planning
Path Planning from Route Plan path to be followed from the given route.

Reference implementation is in Behavior Path Planner.
- Lanelet map (driving lanelets) lane-follow
Obstacle Avoidance Plan path to avoid obstacles by steering operation.

Reference implementation is in Avoidance, Obstacle Avoidance Planner. Enable flag in parameter: launch obstacle_avoidance_planner true
- objects information obstacle-avoidance Demonstration Video
Demonstration Video
Path Smoothing Plan path to achieve smooth steering.

Reference implementation is in Obstacle Avoidance Planner.
- Lanelet map (driving lanelet) path-smoothing Demonstration Video
Demonstration Video
Narrow Space Driving Plan path to drive within the drivable area. Furthermore, when it is not possible to drive within the drivable area, stop the vehicle to avoid exiting the drivable area.

Reference implementation is in Obstacle Avoidance Planner.
- Lanelet map (high-precision lane boundaries) narrow-space-driving Demonstration Video
Demonstration Video
Lane Change Plan path for lane change to reach the destination.

Reference implementation is in Lane Change.
- Lanelet map (driving lanelets) lane-change Demonstration Video
Demonstration Video
Pull Over Plan path for pull over to park at the road shoulder.

Reference implementation is in Goal Planner.
- Lanelet map (shoulder lane) pull-over Demonstration Videos:
Simple Pull Over
Demonstration Video
Arc Forward Pull Over
Demonstration Video
Arc Backward Pull Over
Demonstration Video
Pull Out Plan path for pull over to start from the road shoulder.

Reference implementation is in Pull Out Module.
- Lanelet map (shoulder lane) pull-out Demonstration Video:
Simple Pull Out
Demonstration Video
Backward Pull Out
Demonstration Video
Path Shift Plan path in lateral direction in response to external instructions.

Reference implementation is in Side Shift Module.
- None side-shift
Obstacle Stop Plan velocity to stop for an obstacle on the path.

Reference implementation is in Obstacle Stop Planner, Obstacle Cruise Planner. launch obstacle_stop_planner and enable flag: TODO, launch obstacle_cruise_planner and enable flag: TODO
- objects information obstacle-stop Demonstration Video
Demonstration Video
Obstacle Deceleration Plan velocity to decelerate for an obstacle located around the path.

Reference implementation is in Obstacle Stop Planner, Obstacle Cruise Planner.
- objects information obstacle-decel Demonstration Video
Demonstration Video
Adaptive Cruise Control Plan velocity to follow the vehicle driving in front of the ego vehicle.

Reference implementation is in Obstacle Stop Planner, Obstacle Cruise Planner.
- objects information adaptive-cruise
Decelerate for cut-in vehicles Plan velocity to avoid a risk for cutting-in vehicle to ego lane.

Reference implementation is in Obstacle Cruise Planner.
- objects information cut-in
Surround Check at starting Plan velocity to prevent moving when an obstacle exists around the vehicle.

Reference implementation is in Surround Obstacle Checker. Enable flag in parameter: use_surround_obstacle_check true in tier4_planning_component.launch.xml <
- objects information surround-check Demonstration Video
Demonstration Video
Curve Deceleration Plan velocity to decelerate the speed on a curve.

Reference implementation is in Motion Velocity Smoother.
- None decel-on-curve
Curve Deceleration for Obstacle Plan velocity to decelerate the speed on a curve for a risk of obstacle collision around the path.

Reference implementation is in Obstacle Velocity Limiter.
- objects information
- Lanelet map (static obstacle)
decel-on-curve-obstacles Demonstration Video
Demonstration Video
Crosswalk Plan velocity to stop or decelerate for pedestrians approaching or walking on a crosswalk.

Reference implementation is in Crosswalk Module.
- objects information
- Lanelet map (pedestrian crossing)
crosswalk Demonstration Video
Demonstration Video
Intersection Oncoming Vehicle Check Plan velocity for turning right/left at intersection to avoid a risk with oncoming other vehicles.

Reference implementation is in Intersection Module.
- objects information
- Lanelet map (intersection lane and yield lane)
intersection Demonstration Video
Demonstration Video
Intersection Blind Spot Check Plan velocity for turning right/left at intersection to avoid a risk with other vehicles or motorcycles coming from behind blind spot.

Reference implementation is in Blind Spot Module.
- objects information
- Lanelet map (intersection lane)
blind-spot Demonstration Video
Demonstration Video
Intersection Occlusion Check Plan velocity for turning right/left at intersection to avoid a risk with the possibility of coming vehicles from occlusion area.

Reference implementation is in Intersection Module.
- objects information
- Lanelet map (intersection lane)
intersection-occlusion Demonstration Video
Demonstration Video
Intersection Traffic Jam Detection Plan velocity for intersection not to enter the intersection when a vehicle is stopped ahead for a traffic jam.

Reference implementation is in Intersection Module.
- objects information
- Lanelet map (intersection lane)
intersection-traffic-jam Demonstration Video
Demonstration Video
Traffic Light Plan velocity for intersection according to a traffic light signal.

Reference implementation is in Traffic Light Module.
- Traffic light color information traffic-light Demonstration Video
Demonstration Video
Run-out Check Plan velocity to decelerate for the possibility of nearby objects running out into the path.

Reference implementation is in Run Out Module.
- objects information run-out Demonstration Video
Demonstration Video
Stop Line Plan velocity to stop at a stop line.

Reference implementation is in Stop Line Module.
- Lanelet map (stop line) stop-line Demonstration Video
Demonstration Video
Occlusion Spot Check Plan velocity to decelerate for objects running out from occlusion area, for example, from behind a large vehicle.

Reference implementation is in Occlusion Spot Module.
- objects information
- Lanelet map (private/public lane)
occlusion-spot Demonstration Video
Demonstration Video
No Stop Area Plan velocity not to stop in areas where stopping is prohibited, such as in front of the fire station entrance.

Reference implementation is in No Stopping Area Module.
- Lanelet map (no stopping area) no-stopping-area
Merge from Private Area to Public Road Plan velocity for entering the public road from a private driveway to avoid a risk of collision with pedestrians or other vehicles.

Reference implementation is in Merge from Private Area Module.
- objects information
- Lanelet map (private/public lane)
WIP
Speed Bump Plan velocity to decelerate for speed bumps.

Reference implementation is in Speed Bump Module.
- Lanelet map (speed bump) speed-bump Demonstration Video
Demonstration Video
Detection Area Plan velocity to stop at the corresponding stop when an object exist in the designated detection area.

Reference implementation is in Detection Area Module.
- Lanelet map (detection area) detection-area Demonstration Video
Demonstration Video
No Drivable Lane Plan velocity to stop before exiting the area designated by ODD (Operational Design Domain) or stop the vehicle if autonomous mode started in out of ODD lane.

Reference implementation is in No Drivable Lane Module.
- Lanelet map (no drivable lane) no-drivable-lane
Collision Detection when deviating from lane Plan velocity to avoid conflict with other vehicles driving in the another lane when the ego vehicle is deviating from own lane.

Reference implementation is in Out of Lane Module.
- objects information
- Lanelet map (driving lane)
WIP
Parking Plan path and velocity for given goal in parking area.

Reference implementation is in Free Space Planner.
- objects information
- Lanelet map (parking area)
parking Demonstration Video
Demonstration Video
Autonomous Emergency Braking (AEB) Perform an emergency stop if a collision with an object ahead is anticipated. It is noted that this function is expected as a final safety layer, and this should work even in the event of failures in the Localization or Perception system.

Reference implementation is in Out of Lane Module.
- Primitive objects aeb
Minimum Risk Maneuver (MRM) Provide appropriate MRM (Minimum Risk Maneuver) instructions when a hazardous event occurs. For example, when a sensor trouble found, send an instruction for emergency braking, moderate stop, or pulling over to the shoulder, depending on the severity of the situation.

Reference implementation is in TODO
- TODO WIP
Trajectory Validation Check the planned trajectory is safe. If it is unsafe, take appropriate action, such as modify the trajectory, stop sending the trajectory or report to the autonomous driving system.

Reference implementation is in Planning Validator.
- None trajectory-validation
Running Lane Map Generation Generate lane map from localization data recorded in manual driving.

Reference implementation is in WIP
- None WIP
Running Lane Optimization Optimize the centerline (reference path) of the map to make it smooth considering the vehicle kinematics.

Reference implementation is in Static Centerline Optimizer.
- Lanelet map (driving lanes) WIP

Reference Implementation#

The following diagram describes the reference implementation of the Planning component. By adding new modules or extending the functionalities, various ODDs can be supported.

Note that some implementation does not adhere to the high-level architecture design due to the difficulties of the implementation and require updating.

reference-implementation

For more details, please refer to the design documents in each package.

Important information in the current implementation#

An important difference compared to the high-level design is the "introduction of the scenario layer" and the "clear separation of behavior and motion." These are introduced due to current performance and implementation challenges. Whether to define these as part of the high-level design or to improve them as part of the implementation is a matter of discussion.

Introducing the Scenario Planning layer#

There are different requirements for interfaces between driving in well-structured lanes and driving in a free-space area like a parking lot. For example, while Lane Driving can handle routes with map IDs, this is not appropriate for planning in free space. The mechanism that switches planning sub-components at the scenario level (Lane Driving, Parking, etc) enables a flexible design of the interface, however, it has a drawbacks of the reuse of modules across different scenarios.

Separation of Behavior and Motion#

One of the classic approach to Planning involves dividing it into "Behavior", which decides the action, and "Motion", which determines the final movement. However, this separation implies a trade-off with performance, as performance tends to degrade with increasing separation of functions. For example, Behavior needs to make decisions without prior knowledge of the computations that Motion will eventually perform, which generally results in conservative decision-making. On the other hand, if behavior and motion are integrated, motion performance and decision-making become interdependent, creating challenges in terms of expandability, such as when you wish to extend only the decision-making function to follow a regional traffic rules.

To understand this background, this previously discussed document may be useful.

Customize features in the current implementation#

While it is possible to add module-level functionalities in the current implementation, a unified interface for all functionalities is not provided. Here's a brief explanation of the methods of extending at the module level in the current implementation.

reference-implementation-add-new-modules

Add new modules in behavior_velocity_planner or behavior_path_plnner#

ROS nodes such as behavior_path_planner and behavior_velocity_planner have a module interface available through plugins. By adding modules in accordance with the module interfaces defined in these ROS nodes, dynamic loading/unloading of modules becomes possible. For specific methods of adding modules, please refer to the documentation of each package.

Add a new ros node in the planning component#

When adding modules in Motion Planning, it is necessary to create the module as a ROS Node and integrate it into the planning component. The current configuration involves adding information to the target trajectory calculated upstream, and the introduction of a ROS Node in this process allows for the expansion of functionality.

Add or replace with scenarios#

The current implementation has introduced a scenario-level switching logic as a method for collectively switching multiple modules. This allows for the addition of new scenarios (e.g., highway driving).

By creating a scenario as a ros node and aligning the scenario_selector ros node with it, the integration is complete. The benefit of this is that you can introduce significant new functionalities without affecting the implementation of other scenarios (like Lane Driving). However, it only allows for scenario-level coordination through scenario switching and does not enable coordination at the existing planning module level.