File tree 2 files changed +2
-2
lines changed
planning/behavior_path_dynamic_avoidance_module
include/behavior_path_dynamic_avoidance_module
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ struct DynamicAvoidanceParameters
123
123
double max_overtaking_crossing_object_angle{0.0 };
124
124
double min_oncoming_crossing_object_vel{0.0 };
125
125
double max_oncoming_crossing_object_angle{0.0 };
126
- double max_pedestrians_crossing_vel {0.0 };
126
+ double max_pedestrian_crossing_vel {0.0 };
127
127
double max_stopped_object_vel{0.0 };
128
128
129
129
// drivable area generation
Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ void DynamicAvoidanceModule::registerUnregulatedObjects(
616
616
}
617
617
618
618
// 1.c. Check if object' lateral velocity is small enough to be avoid.
619
- if (obj_normal_vel > parameters_->max_pedestrians_crossing_vel ) {
619
+ if (obj_normal_vel > parameters_->max_pedestrian_crossing_vel ) {
620
620
RCLCPP_INFO_EXPRESSION (
621
621
getLogger (), parameters_->enable_debug_info ,
622
622
" [DynamicAvoidance] Ignore obstacle (%s) since it crosses the ego's path with its normal "
You can’t perform that action at this time.
0 commit comments