File tree 4 files changed +8
-8
lines changed
planning/behavior_velocity_dynamic_obstacle_stop_module/src
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 27
27
namespace behavior_velocity_planner ::dynamic_obstacle_stop
28
28
{
29
29
std::optional<geometry_msgs::msg::Point > find_closest_collision_point (
30
- const EgoData & ego_data, const autoware_auto_perception_msgs ::msg::PredictedObject & object,
30
+ const EgoData & ego_data, const autoware_perception_msgs ::msg::PredictedObject & object,
31
31
const tier4_autoware_utils::MultiPolygon2d & object_footprints, const PlannerParam & params)
32
32
{
33
33
std::optional<geometry_msgs::msg::Point > closest_collision_point;
@@ -74,7 +74,7 @@ std::optional<geometry_msgs::msg::Point> find_closest_collision_point(
74
74
75
75
std::vector<Collision> find_collisions (
76
76
const EgoData & ego_data,
77
- const std::vector<autoware_auto_perception_msgs ::msg::PredictedObject> & objects,
77
+ const std::vector<autoware_perception_msgs ::msg::PredictedObject> & objects,
78
78
const std::vector<tier4_autoware_utils::MultiPolygon2d> & object_forward_footprints,
79
79
const PlannerParam & params)
80
80
{
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ namespace behavior_velocity_planner::dynamic_obstacle_stop
28
28
// / @param [in] object_footprint footprint of the object used for finding a collision
29
29
// / @return the collision point closest to ego (if any)
30
30
std::optional<geometry_msgs::msg::Point > find_closest_collision_point (
31
- const EgoData & ego_data, const autoware_auto_perception_msgs ::msg::PredictedObject & object,
31
+ const EgoData & ego_data, const autoware_perception_msgs ::msg::PredictedObject & object,
32
32
const tier4_autoware_utils::MultiPolygon2d & object_footprints, const PlannerParam & params);
33
33
34
34
// / @brief find the earliest collision along the ego path
@@ -38,7 +38,7 @@ std::optional<geometry_msgs::msg::Point> find_closest_collision_point(
38
38
// / @return the point of earliest collision along the ego path
39
39
std::vector<Collision> find_collisions (
40
40
const EgoData & ego_data,
41
- const std::vector<autoware_auto_perception_msgs ::msg::PredictedObject> & objects,
41
+ const std::vector<autoware_perception_msgs ::msg::PredictedObject> & objects,
42
42
const std::vector<tier4_autoware_utils::MultiPolygon2d> & object_forward_footprints,
43
43
const PlannerParam & params);
44
44
Original file line number Diff line number Diff line change 16
16
17
17
#include < tier4_autoware_utils/geometry/boost_polygon_utils.hpp>
18
18
19
- #include < autoware_auto_perception_msgs /msg/predicted_objects.hpp>
19
+ #include < autoware_perception_msgs /msg/predicted_objects.hpp>
20
20
#include < geometry_msgs/msg/pose.hpp>
21
21
22
22
#include < boost/geometry.hpp>
@@ -80,7 +80,7 @@ tier4_autoware_utils::Polygon2d create_footprint(
80
80
}
81
81
82
82
tier4_autoware_utils::MultiPolygon2d create_object_footprints (
83
- const std::vector<autoware_auto_perception_msgs ::msg::PredictedObject> & objects,
83
+ const std::vector<autoware_perception_msgs ::msg::PredictedObject> & objects,
84
84
const PlannerParam & params)
85
85
{
86
86
tier4_autoware_utils::MultiPolygon2d footprints;
Original file line number Diff line number Diff line change 19
19
20
20
#include < tier4_autoware_utils/geometry/geometry.hpp>
21
21
22
- #include < autoware_auto_perception_msgs /msg/predicted_objects.hpp>
22
+ #include < autoware_perception_msgs /msg/predicted_objects.hpp>
23
23
24
24
#include < vector>
25
25
@@ -43,7 +43,7 @@ tier4_autoware_utils::Polygon2d make_forward_footprint(
43
43
const autoware_perception_msgs::msg::PredictedObject & obstacle, const PlannerParam & params,
44
44
const double hysteresis);
45
45
tier4_autoware_utils::MultiPolygon2d create_object_footprints (
46
- const std::vector<autoware_auto_perception_msgs ::msg::PredictedObject> & objects,
46
+ const std::vector<autoware_perception_msgs ::msg::PredictedObject> & objects,
47
47
const PlannerParam & params);
48
48
tier4_autoware_utils::Polygon2d translate_polygon (
49
49
const tier4_autoware_utils::Polygon2d & polygon, const double x, const double y);
You can’t perform that action at this time.
0 commit comments