Skip to content

Commit

Permalink
Remove CHECK preventing the use of the IMU-based extrapolator. (#1804)
Browse files Browse the repository at this point in the history
Fixes #1803.

Signed-off-by: Wolfgang Hess <whess@lyft.com>
  • Loading branch information
wohe committed Jan 26, 2021
1 parent 018dded commit a48f12d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cartographer/mapping/pose_extrapolator_interface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ PoseExtrapolatorInterface::CreateWithImuData(
const std::vector<sensor::ImuData>& imu_data,
const std::vector<transform::TimestampedTransform>& initial_poses) {
CHECK(!imu_data.empty());
// TODO(schwoere): Implement/integrate imu based extrapolator.
CHECK(!options.use_imu_based()) << "Not implemented!";
if (options.use_imu_based()) {
return ImuBasedPoseExtrapolator::InitializeWithImu(options.imu_based(),
imu_data, initial_poses);
Expand Down

0 comments on commit a48f12d

Please sign in to comment.