Package Summary
Tags | No category tags. |
Version | 1.0.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-04-04 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Maxime Clement
- Alqudah Mohammad
- Takayuki Murooka
- Yuki Takagi
Authors
- Maxime Clement
Motion Velocity Planner Common
This package provides common utilities and data structures for the motion velocity planner in the Autoware system. It contains tools for geometric calculations, trajectory processing, and velocity planning results.
Overview
Package motion velocity planner is responsible for generating velocity profiles for autonomous vehicles based on the current trajectory and environment. This package autoware_motion_velocity_planner_common
contains essential utilities and structures that support the planning process, including:
- Geometric operations for polygons and trajectories.
- General utilities for trajectory processing and visualization.
- Data structures for storing velocity planning results.
Design
Key Components
-
Polygon Utilities (
polygon_utils.hpp
)
This component provides functions for handling geometric polygons related to motion planning. It includes:- Collision detection between trajectories and obstacles.
- Creation of polygons representing the vehicle’s trajectory at different time steps.
- Geometric calculations using Boost Geometry.
-
General Utilities (
utils.hpp
)
This component provides various utility functions, including:- Conversion between point representations (e.g.,
pcl::PointXYZ
togeometry_msgs::msg::Point
). - Distance calculations between trajectory points and obstacles.
- Functions for concatenating vectors and processing trajectories.
- Visualization tools for creating markers.
- Conversion between point representations (e.g.,
-
Velocity Planning Results (
velocity_planning_result.hpp
)
This component defines data structures for storing the results of velocity planning, including:-
SlowdownInterval
: Represents a segment where the vehicle should slow down, with specified start and end points and velocity. -
VelocityPlanningResult
: Contains a collection of stop points, slowdown intervals, and optional velocity limits and clear commands.
-
Usage
Including the Package
To use this package in your project, you need to include it in your CMakeLists.txt:
find_package(autoware_motion_velocity_planner_common REQUIRED)
Example Usage
Here’s a simple example demonstrating the use of the utility functions:
#include "autoware/motion_velocity_planner_common/utils.hpp"
const auto decimated_traj_points = autoware::motion_velocity_planner::utils::decimate_trajectory_points_from_ego(
traj_points, current_pose, ego_nearest_dist_threshold, ego_nearest_yaw_threshold,
p.decimate_trajectory_step_length, 0.0);
this example is from autoware_universe/planning/motion_velocity_planner/autoware_motion_velocity_obstacle_cruise_module/src/obstacle_cruise_module.cpp
Changelog for package autoware_motion_velocity_planner_common
1.0.0 (2025-03-31)
- chore: update version in package.xml
- feat: autoware_motion_velocity_planner and
autoware_motion_velocity_planner_common to core
(#242)
- feat: modify autoware_universe_utils to autoware_utils
- feat: remove useless dependecy
- style(pre-commit): autofix
- feat: modify autoware_universe_utils to autoware_utils
- feat: autoware_motion_velocity_planner_node to core
- style(pre-commit): autofix
- feat: autoware_motion_velocity_planner_node to core
- feat: modify autoware_universe_utils to autoware_utils
- feat: remove useless dependecy
- style(pre-commit): autofix
- feat: modify autoware_universe_utils to autoware_utils
- style(pre-commit): autofix
- feat: port autoware_behavior_velocity_planner to core
- fix: apply latest changes from autoware.universe
- fix: deadlinks in README
- fix(autoware_motion_velocity_planner): porting autoware_motion_velocity_planner, autoware_motion_velocity_planner, sync with latest universe: v0.2
- style(pre-commit): autofix
- Update planning/behavior_velocity_planner/autoware_behavior_velocity_planner/include/autoware/behavior_velocity_planner/node.hpp
- Update planning/behavior_velocity_planner/autoware_behavior_velocity_planner_common/include/autoware/behavior_velocity_planner_common/utilization/util.hpp
- Update planning/behavior_velocity_planner/autoware_behavior_velocity_planner_common/src/utilization/util.cpp
- Update planning/behavior_velocity_planner/autoware_behavior_velocity_planner_common/test/src/test_util.cpp
- Update planning/behavior_velocity_planner/autoware_behavior_velocity_stop_line_module/src/debug.cpp
- Update planning/behavior_velocity_planner/autoware_behavior_velocity_stop_line_module/src/manager.cpp
- style(pre-commit): autofix
- Update planning/motion_velocity_planner/autoware_motion_velocity_planner/CMakeLists.txt
- style(pre-commit): autofix
- feat(autoware_motion_velocity_planner_node): porting autoware_motion_velocity_planner_node, autoware_motion_velocity_planner_node, remove metrics msgs publish according to pr-10342 under universe repo: v0.5
- feat(autoware_motion_velocity_planner_common): porting autoware_motion_velocity_planner_common, autoware_motion_velocity_planner_common, port to core repo: v0.0
- style(pre-commit): autofix
- move
- rename
- fix exec
- add maintainer
- style(pre-commit): autofix
- fix test_depend
* feat(autoware_motion_velocity_planner_node): porting autoware_motion_velocity_planner_node, autoware_motion_velocity_planner_node, resolve build issue: v0.6 ---------Co-authored-by: suchang <<chang.su@autocore.ai>> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]\@users.noreply.github.com> Co-authored-by: Ryohsuke Mitsudome <<ryohsuke.mitsudome@tier4.jp>> Co-authored-by: liuXinGangChina <<lxg19892021@gmail.com>> Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>> Co-authored-by: Ryohsuke Mitsudome <<43976834+mitsudome-r@users.noreply.github.com>> Co-authored-by: 心刚 <<90366790+liuXinGangChina@users.noreply.github.com>>
- Contributors: Ryohsuke Mitsudome, storrrrrrrrm
Wiki Tutorials
Package Dependencies
System Dependencies
Name |
---|
eigen |
libboost-dev |