diff --git a/src/processor_motion.cpp b/src/processor_motion.cpp index 4af40ff247986c746c961ed2323669f392f8c527..e17c407c9f6a127d2f2ad73dd8d3e7751a8f918a 100644 --- a/src/processor_motion.cpp +++ b/src/processor_motion.cpp @@ -345,6 +345,7 @@ void ProcessorMotion::reintegrateBuffer(CaptureMotionPtr _capture_ptr) const Scalar dt = motion_it->ts_ - prev_motion_it->ts_; // re-convert data to delta with the new calibration parameters + // FIXME: Get calibration params from Capture or capture->Sensor VectorXs calib = getCalibration(); data2delta(motion_it->data_, motion_it->data_cov_, dt, motion_it->delta_, motion_it->delta_cov_, calib, jacobian_delta_calib_);