Skip to content

Commit

Permalink
fix: typo in the lidar-lidar calibrator
Browse files Browse the repository at this point in the history
Signed-off-by: Kenzo Lobos-Tsunekawa <kenzo.lobos@tier4.jp>
  • Loading branch information
knzo25 committed Nov 11, 2024
1 parent 9f49e14 commit 2334c0e
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 2334c0e

Please sign in to comment.