File tree 3 files changed +12
-7
lines changed
planning/behavior_velocity_planner/src
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -436,14 +436,14 @@ autoware_auto_planning_msgs::msg::Path BehaviorVelocityPlannerNode::generatePath
436
436
std::make_shared<const PlannerData>(planner_data), *input_path_msg);
437
437
438
438
// screening
439
- const auto filtered_path = filterLitterPathPoint (to_path (velocity_planned_path));
439
+ const auto filtered_path = :: behavior_velocity_planner:: filterLitterPathPoint (to_path (velocity_planned_path));
440
440
441
441
// interpolation
442
442
const auto interpolated_path_msg =
443
- interpolatePath (filtered_path, forward_path_length_, behavior_output_path_interval_);
443
+ ::behavior_velocity_planner:: interpolatePath (filtered_path, forward_path_length_, behavior_output_path_interval_);
444
444
445
445
// check stop point
446
- output_path_msg = filterStopPathPoint (interpolated_path_msg);
446
+ output_path_msg = :: behavior_velocity_planner:: filterStopPathPoint (interpolated_path_msg);
447
447
448
448
output_path_msg.header .frame_id = " map" ;
449
449
output_path_msg.header .stamp = this ->now ();
Original file line number Diff line number Diff line change 18
18
#include " planner_manager.hpp"
19
19
#include " tier4_autoware_utils/ros/logger_level_configure.hpp"
20
20
21
- #include < behavior_velocity_planner /srv/load_plugin.hpp>
22
- #include < behavior_velocity_planner /srv/unload_plugin.hpp>
21
+ #include < autoware_behavior_velocity_planner /srv/load_plugin.hpp>
22
+ #include < autoware_behavior_velocity_planner /srv/unload_plugin.hpp>
23
23
#include < behavior_velocity_planner_common/planner_data.hpp>
24
24
#include < rclcpp/rclcpp.hpp>
25
25
#include < tier4_autoware_utils/ros/published_time_publisher.hpp>
@@ -48,10 +48,12 @@ namespace autoware
48
48
{
49
49
namespace behavior_velocity_planner
50
50
{
51
- using autoware::behavior_velocity_planner::srv::LoadPlugin;
52
- using autoware::behavior_velocity_planner::srv::UnloadPlugin;
53
51
using autoware_auto_mapping_msgs::msg::HADMapBin;
54
52
using tier4_planning_msgs::msg::VelocityLimit;
53
+ using ::behavior_velocity_planner::PlannerData;
54
+ using autoware_behavior_velocity_planner::srv::LoadPlugin;
55
+ using autoware_behavior_velocity_planner::srv::UnloadPlugin;
56
+ using ::behavior_velocity_planner::TrafficSignalStamped;
55
57
56
58
class BehaviorVelocityPlannerNode : public rclcpp ::Node
57
59
{
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ namespace autoware
40
40
{
41
41
namespace behavior_velocity_planner
42
42
{
43
+ using ::behavior_velocity_planner::PlannerData;
44
+ using ::behavior_velocity_planner::PluginInterface;
45
+
43
46
class BehaviorVelocityPlannerManager
44
47
{
45
48
public:
You can’t perform that action at this time.
0 commit comments