Auterion App SDK
Auterion SDK is a library that can be used by AuterionOS apps to communicate with the system.
LosFilter Class Reference

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...
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ LosFilter()

LosFilter::LosFilter ( )

Default constructor.

Initializes an instance of the LosFilter.

Member Function Documentation

◆ getCovariance()

const Eigen::MatrixXf LosFilter::getCovariance ( ) const

Gets the covariance matrix of the state.

Returns
State covariance matrix.

◆ getLOS()

Eigen::Vector3f LosFilter::getLOS ( ) const

Gets the current estimated LOS vector.

Returns
Estimated LOS vector.

◆ getLOSInnov()

Eigen::Vector3f LosFilter::getLOSInnov ( ) const

Gets the LOS innovation (difference between measurement and prediction).

Returns
LOS innovation vector.

◆ getLOSInnovVar()

Eigen::Vector3f LosFilter::getLOSInnovVar ( ) const

Gets the variance of the LOS innovation.

Returns
LOS innovation variance vector.

◆ getLOSRate()

Eigen::Vector3f LosFilter::getLOSRate ( ) const

Gets the current estimated LOS rate.

Returns
Estimated LOS rate vector.

◆ getLOSRateVariance()

Eigen::MatrixXf LosFilter::getLOSRateVariance ( ) const

Gets the variance of the LOS rate estimates.

Returns
LOS rate variance matrix.

◆ getLOSVariance()

Eigen::MatrixXf LosFilter::getLOSVariance ( ) const

Gets the variance of the LOS estimates.

Returns
LOS variance matrix.

◆ getStateVariance()

Eigen::MatrixXf LosFilter::getStateVariance ( ) const

Gets the state variance matrix.

Returns
State variance matrix.

◆ init() [1/2]

void LosFilter::init ( )

Initializes the filter without an initial LOS vector.

This function prepares the filter for operation.

◆ init() [2/2]

void LosFilter::init ( const Eigen::Vector3f &  los_init)

Initializes the filter with a given LOS vector.

Parameters
los_initInitial Line-of-Sight (LOS) vector.

◆ predict()

void LosFilter::predict ( float  dt)

Predicts the next state of the filter based on elapsed time.

Parameters
dtTime step for prediction (in seconds).

◆ update()

void LosFilter::update ( const Eigen::Vector3f &  los_measurement,
float  los_variance 
)

Updates the filter state with a new LOS measurement.

Parameters
los_measurementMeasured LOS vector.
los_varianceMeasurement variance.

The documentation for this class was generated from the following file: