Skip to content

Commit

Permalink
fix(mapping_based_calibrator): typo in the lidar-lidar calibrator (#211)
Browse files Browse the repository at this point in the history
fix: typo in the lidar-lidar calibrator

Signed-off-by: Kenzo Lobos-Tsunekawa <[email protected]>
  • Loading branch information
knzo25 authored Nov 15, 2024
1 parent a3dd584 commit 923c748
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ void CalibrationMapper::checkKeyframeLost(Frame::Ptr keyframe)

if (
std::abs(translation_angle_diff) > parameters_->lost_frame_max_angle_diff_ ||
std::abs(translation_angle_diff) > parameters_->lost_frame_max_angle_diff_) {
std::abs(rotation_angle_diff) > parameters_->lost_frame_max_angle_diff_) {
keyframe->lost_ = true;

RCLCPP_WARN(
Expand Down

0 comments on commit 923c748

Please sign in to comment.