36 #include <Eigen/Eigen>
76 void init(
const Eigen::Vector3f& los_init);
91 void update(
const Eigen::Vector3f& los_measurement,
float los_variance);
150 std::shared_ptr<LosFilterImpl> _impl;
Implementation details for the Line Of Sight Filter class.
A filter for estimating Line-of-Sight (LOS) vectors and their rates.
Definition: los_filter.hpp:55
void init()
Initializes the filter without an initial LOS vector.
Eigen::MatrixXf getLOSVariance() const
Gets the variance of the LOS estimates.
Eigen::MatrixXf getStateVariance() const
Gets the state variance matrix.
Eigen::MatrixXf getLOSRateVariance() const
Gets the variance of the LOS rate estimates.
Eigen::Vector3f getLOS() const
Gets the current estimated LOS vector.
const Eigen::MatrixXf getCovariance() const
Gets the covariance matrix of the state.
LosFilter()
Default constructor.
void predict(float dt)
Predicts the next state of the filter based on elapsed time.
void update(const Eigen::Vector3f &los_measurement, float los_variance)
Updates the filter state with a new LOS measurement.
Eigen::Vector3f getLOSRate() const
Gets the current estimated LOS rate.
Eigen::Vector3f getLOSInnovVar() const
Gets the variance of the LOS innovation.
void init(const Eigen::Vector3f &los_init)
Initializes the filter with a given LOS vector.
Eigen::Vector3f getLOSInnov() const
Gets the LOS innovation (difference between measurement and prediction).