Autoware.Auto
|
|
This file defines the lane_planner class. More...
#include <lane_planner/visibility_control.hpp>
#include <autoware_auto_vehicle_msgs/msg/vehicle_kinematic_state.hpp>
#include <autoware_auto_planning_msgs/msg/trajectory.hpp>
#include <autoware_auto_planning_msgs/msg/had_map_route.hpp>
#include <common/types.hpp>
#include <motion_common/config.hpp>
#include <trajectory_smoother/trajectory_smoother.hpp>
#include <lanelet2_core/LaneletMap.h>
#include <lanelet2_core/primitives/Point.h>
#include <iostream>
#include <vector>
Go to the source code of this file.
Classes | |
struct | autoware::lane_planner::LanePlannerConfig |
class | autoware::lane_planner::LanePlanner |
A class for recording trajectories and replaying them as plans. More... | |
Namespaces | |
autoware | |
This file defines the lanelet2_map_provider_node class. | |
autoware::lane_planner | |
TODO(ryohsuke.mitsudome): Document namespaces! | |
Typedefs | |
using | autoware::lane_planner::TrajectoryPoint = autoware_auto_planning_msgs::msg::TrajectoryPoint |
using | autoware::lane_planner::TrajectoryPoints = std::vector< TrajectoryPoint > |
using | autoware::lane_planner::State = autoware_auto_vehicle_msgs::msg::VehicleKinematicState |
Functions | |
LANE_PLANNER_PUBLIC float32_t | autoware::lane_planner::distance2d (const TrajectoryPoint &p1, const TrajectoryPoint &p2) |
LANE_PLANNER_PUBLIC float32_t | autoware::lane_planner::calculate_curvature (const TrajectoryPoint &p1, const TrajectoryPoint &p2, const TrajectoryPoint &p3) |
This file defines the lane_planner class.