Skip to content

Commit

Permalink
fix pose jitters
Browse files Browse the repository at this point in the history
  • Loading branch information
koide3 committed Sep 19, 2024
1 parent 2dcf50b commit 0f29f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/glim/util/trajectory_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void TrajectoryManager::update_anchor(double stamp, const Eigen::Isometry3d& T_w
const double t0 = odom_stamps[idx - 1];
const double t1 = odom_stamps[idx];
if (t0 > stamp || t1 < stamp) {
T_world_odom = T_world_sensor * T_odom_sensor[idx].inverse();
// T_world_odom = T_world_sensor * T_odom_sensor[idx].inverse();
return;
}

Expand Down

0 comments on commit 0f29f6d

Please sign in to comment.