Auterion App SDK
Auterion SDK is a library that can be used by AuterionOS apps to communicate with the system.
|
A filter for estimating Line-of-Sight (LOS) vectors and their rates. More...
#include <auterion_sdk/tracking/los_filter/los_filter.hpp>
Public Member Functions | |
LosFilter () | |
Default constructor. More... | |
void | init () |
Initializes the filter without an initial LOS vector. More... | |
void | init (const Eigen::Vector3f &los_init) |
Initializes the filter with a given LOS vector. More... | |
void | predict (float dt) |
Predicts the next state of the filter based on elapsed time. More... | |
void | update (const Eigen::Vector3f &los_measurement, float los_variance) |
Updates the filter state with a new LOS measurement. More... | |
Eigen::Vector3f | getLOS () const |
Gets the current estimated LOS vector. More... | |
Eigen::Vector3f | getLOSRate () const |
Gets the current estimated LOS rate. More... | |
const Eigen::MatrixXf | getCovariance () const |
Gets the covariance matrix of the state. More... | |
Eigen::Vector3f | getLOSInnov () const |
Gets the LOS innovation (difference between measurement and prediction). More... | |
Eigen::Vector3f | getLOSInnovVar () const |
Gets the variance of the LOS innovation. More... | |
Eigen::MatrixXf | getStateVariance () const |
Gets the state variance matrix. More... | |
Eigen::MatrixXf | getLOSVariance () const |
Gets the variance of the LOS estimates. More... | |
Eigen::MatrixXf | getLOSRateVariance () const |
Gets the variance of the LOS rate estimates. More... | |
A filter for estimating Line-of-Sight (LOS) vectors and their rates.
This class provides functionality for initializing, predicting, and updating the state of a LOS estimation filter. It maintains covariance information and provides access to various state variables.
LosFilter::LosFilter | ( | ) |
Default constructor.
Initializes an instance of the LosFilter.
const Eigen::MatrixXf LosFilter::getCovariance | ( | ) | const |
Gets the covariance matrix of the state.
Eigen::Vector3f LosFilter::getLOS | ( | ) | const |
Gets the current estimated LOS vector.
Eigen::Vector3f LosFilter::getLOSInnov | ( | ) | const |
Gets the LOS innovation (difference between measurement and prediction).
Eigen::Vector3f LosFilter::getLOSInnovVar | ( | ) | const |
Gets the variance of the LOS innovation.
Eigen::Vector3f LosFilter::getLOSRate | ( | ) | const |
Gets the current estimated LOS rate.
Eigen::MatrixXf LosFilter::getLOSRateVariance | ( | ) | const |
Gets the variance of the LOS rate estimates.
Eigen::MatrixXf LosFilter::getLOSVariance | ( | ) | const |
Gets the variance of the LOS estimates.
Eigen::MatrixXf LosFilter::getStateVariance | ( | ) | const |
Gets the state variance matrix.
void LosFilter::init | ( | ) |
Initializes the filter without an initial LOS vector.
This function prepares the filter for operation.
void LosFilter::init | ( | const Eigen::Vector3f & | los_init | ) |
Initializes the filter with a given LOS vector.
los_init | Initial Line-of-Sight (LOS) vector. |
void LosFilter::predict | ( | float | dt | ) |
Predicts the next state of the filter based on elapsed time.
dt | Time step for prediction (in seconds). |
void LosFilter::update | ( | const Eigen::Vector3f & | los_measurement, |
float | los_variance | ||
) |
Updates the filter state with a new LOS measurement.
los_measurement | Measured LOS vector. |
los_variance | Measurement variance. |