Go to the source code of this file.
|
template<typename MotionModelT , typename NoiseModelT > |
auto | autoware::common::state_estimation::make_kalman_filter (const MotionModelT &motion_model, const NoiseModelT &noise_model, const typename MotionModelT::State &initial_state, const typename MotionModelT::State::Matrix &initial_covariance) |
| A utility function that creates a Kalman filter. More...
|
|
template<typename StateT > |
auto | autoware::common::state_estimation::make_correction_only_kalman_filter (const StateT &initial_state, const typename StateT::Matrix &initial_covariance) |
| A utility function that creates a Kalman filter that is to be used for correction only, i.e., this Kalman filter cannot predict the state forward in time. More...
|
|
template<typename MotionModelT , typename NoiseModelT > |
auto | autoware::common::state_estimation::make_kalman_filter (const MotionModelT &motion_model, const NoiseModelT &noise_model, const typename MotionModelT::State &initial_state, const std::vector< typename MotionModelT::State::Scalar > &initial_variances) |
| A utility function that creates a Kalman filter from a vector of variances. More...
|
|