Commit 04fe796 1 parent dd5144e commit 04fe796 Copy full SHA for 04fe796
File tree 2 files changed +0
-7
lines changed
planning/behavior_path_planner
include/behavior_path_planner
2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -146,9 +146,7 @@ class BehaviorPathPlannerNode : public rclcpp::Node
146
146
const std::vector<std::shared_ptr<SceneModuleStatus>> & statuses) const ;
147
147
148
148
// debug
149
- rclcpp::Publisher<OccupancyGrid>::SharedPtr debug_drivable_area_publisher_;
150
149
rclcpp::Publisher<MarkerArray>::SharedPtr debug_drivable_area_lanelets_publisher_;
151
- rclcpp::Publisher<Path>::SharedPtr debug_path_publisher_;
152
150
rclcpp::Publisher<AvoidanceDebugMsgArray>::SharedPtr debug_avoidance_msg_array_publisher_;
153
151
rclcpp::Publisher<MarkerArray>::SharedPtr debug_marker_publisher_;
154
152
void publishDebugMarker (const std::vector<MarkerArray> & debug_markers);
Original file line number Diff line number Diff line change @@ -65,8 +65,6 @@ BehaviorPathPlannerNode::BehaviorPathPlannerNode(const rclcpp::NodeOptions & nod
65
65
turn_signal_publisher_ =
66
66
create_publisher<TurnIndicatorsCommand>(" ~/output/turn_indicators_cmd" , 1 );
67
67
hazard_signal_publisher_ = create_publisher<HazardLightsCommand>(" ~/output/hazard_lights_cmd" , 1 );
68
- debug_drivable_area_publisher_ = create_publisher<OccupancyGrid>(" ~/debug/drivable_area" , 1 );
69
- debug_path_publisher_ = create_publisher<Path>(" ~/debug/path_for_visualize" , 1 );
70
68
debug_avoidance_msg_array_publisher_ =
71
69
create_publisher<AvoidanceDebugMsgArray>(" ~/debug/avoidance_debug_message_array" , 1 );
72
70
@@ -578,9 +576,6 @@ void BehaviorPathPlannerNode::run()
578
576
579
577
path_candidate_publisher_->publish (util::toPath (*path_candidate));
580
578
581
- // debug_path_publisher_->publish(util::toPath(path));
582
- debug_drivable_area_publisher_->publish (path->drivable_area );
583
-
584
579
// for turn signal
585
580
{
586
581
TurnIndicatorsCommand turn_signal;
You can’t perform that action at this time.
0 commit comments