Skip to content

Commit

Permalink
Fix get param particle_size (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
uhobeike authored Nov 28, 2023
1 parent ec5f7a2 commit 9d5d6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ike_localization/src/ike_localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void IkeLocalization::getParam()

transform_tolerance_ = this->params_.transform_tolerance;

particle_size_ = get_parameter("particle_size").get_value<int>();
particle_size_ = this->params_.particle_size;

initial_pose_x_ = this->params_.initial_pose_x;
initial_pose_y_ = this->params_.initial_pose_y;
Expand Down

0 comments on commit 9d5d6c1

Please sign in to comment.