Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
Signed-off-by: Yuki Takagi <[email protected]>
  • Loading branch information
yuki-takagi-66 committed Apr 17, 2024
1 parent 3b4a48b commit 5bd8b11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ struct DynamicAvoidanceParameters
double max_overtaking_crossing_object_angle{0.0};
double min_oncoming_crossing_object_vel{0.0};
double max_oncoming_crossing_object_angle{0.0};
double max_pedestrians_crossing_vel{0.0};
double max_pedestrian_crossing_vel{0.0};
double max_stopped_object_vel{0.0};

// drivable area generation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ void DynamicAvoidanceModule::registerUnregulatedObjects(
}

// 1.c. Check if object' lateral velocity is small enough to be avoid.
if (obj_normal_vel > parameters_->max_pedestrians_crossing_vel) {
if (obj_normal_vel > parameters_->max_pedestrian_crossing_vel) {
RCLCPP_INFO_EXPRESSION(
getLogger(), parameters_->enable_debug_info,
"[DynamicAvoidance] Ignore obstacle (%s) since it crosses the ego's path with its normal "
Expand Down

0 comments on commit 5bd8b11

Please sign in to comment.