22 #ifndef OV_MSCKF_UPDATER_ZEROVELOCITY_H 23 #define OV_MSCKF_UPDATER_ZEROVELOCITY_H 34 class FeatureDatabase;
69 std::shared_ptr<Propagator> prop,
double gravity_mag,
double zupt_max_velocity,
double zupt_noise_multiplier,
70 double zupt_max_disparity);
80 imu_data.emplace_back(message);
89 clean_old_imu_measurements(oldest_time - 0.10);
99 auto it0 = imu_data.begin();
100 while (it0 != imu_data.end()) {
101 if (it0->timestamp < oldest_time) {
102 it0 = imu_data.erase(it0);
115 bool try_update(std::shared_ptr<State> state,
double timestamp);
125 std::shared_ptr<ov_core::FeatureDatabase>
_db;
134 double _zupt_max_velocity = 1.0;
137 double _zupt_noise_multiplier = 1.0;
140 double _zupt_max_disparity = 1.0;
149 double last_prop_time_offset = 0.0;
150 bool have_last_prop_time_offset =
false;
153 double last_zupt_state_timestamp = 0.0;
156 int last_zupt_count = 0;
161 #endif // OV_MSCKF_UPDATER_ZEROVELOCITY_H Extended Kalman Filter estimator.
Struct which stores general updater options.
std::shared_ptr< Propagator > _prop
Our propagator!
Will try to detect and then update using zero velocity assumption.
std::shared_ptr< ov_core::FeatureDatabase > _db
Feature tracker database with all features in it.
void clean_old_imu_measurements(double oldest_time)
This will remove any IMU measurements that are older then the given measurement time.
Eigen::Vector3d _gravity
Gravity vector.
void feed_imu(const ov_core::ImuData &message, double oldest_time=-1)
Feed function for inertial data.
Struct of our imu noise parameters.
std::vector< ov_core::ImuData > imu_data
Our history of IMU messages (time, angular, linear)
UpdaterOptions _options
Options used during update (chi2 multiplier)
std::map< int, double > chi_squared_table
Chi squared 95th percentile table (lookup would be size of residual)
NoiseManager _noises
Container for the imu noise values.