Remove CHECK preventing the use of the IMU-based extrapolator. (#1804)

Fixes #1803.

Signed-off-by: Wolfgang Hess <whess@lyft.com>
master
Wolfgang Hess 2021-01-26 18:26:46 +01:00 committed by GitHub
parent 018dded2f9
commit a48f12dfa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -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);