Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itk::KalmanLinearEstimator< T, VEstimatorDimension > Class Template Reference
[Numerics]

Implement a linear recursive estimator. More...

#include <itkKalmanLinearEstimator.h>

Collaboration diagram for itk::KalmanLinearEstimator< T, VEstimatorDimension >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef vnl_vector_fixed<
T, VEstimatorDimension > 
VectorType
typedef vnl_matrix_fixed<
T, VEstimatorDimension, VEstimatorDimension > 
MatrixType
typedef T ValueType

Public Methods

 itkStaticConstMacro (Dimension, unsigned int, VEstimatorDimension)
void UpdateWithNewMeasure (const ValueType &newMeasure, const VectorType &newPredictor)
void ClearEstimation (void)
void ClearVariance (void)
void SetVariance (const MatrixType &m)
const VectorTypeGetEstimator (void) const
const MatrixTypeGetVariance (void) const
void SetVariance (const ValueType &var=1.0)

Detailed Description

template<class T, unsigned int VEstimatorDimension>
class itk::KalmanLinearEstimator< T, VEstimatorDimension >

Implement a linear recursive estimator.

KalmanLinearEstimator class implements a linear recursive estimator. The class is templated over the type of the parameters to be estimated and over the number of parameters. Recursive estimation is a fast mechanism for getting information about a system for which we only have access to measures that are linearly related with the parameters we want to estimate.

Definition at line 41 of file itkKalmanLinearEstimator.h.


Member Typedef Documentation

template<class T, unsigned int VEstimatorDimension>
typedef vnl_matrix_fixed<T,VEstimatorDimension,VEstimatorDimension> itk::KalmanLinearEstimator< T, VEstimatorDimension >::MatrixType
 

Matrix type defines a generic matrix type that is used for the matricial operations performed during estimation.

Definition at line 55 of file itkKalmanLinearEstimator.h.

template<class T, unsigned int VEstimatorDimension>
typedef T itk::KalmanLinearEstimator< T, VEstimatorDimension >::ValueType
 

Type is the type associated with the parameters to be estimated. All the parameters are of the same type. Natural choices could be floats and doubles, because Type also is used for all the internal computations.

Definition at line 61 of file itkKalmanLinearEstimator.h.

Referenced by itk::KalmanLinearEstimator< T, VEstimatorDimension >::SetVariance().

template<class T, unsigned int VEstimatorDimension>
typedef vnl_vector_fixed<T,VEstimatorDimension> itk::KalmanLinearEstimator< T, VEstimatorDimension >::VectorType
 

Vector type defines a generic vector type that is used for the matricial operations performed during estimation.

Definition at line 51 of file itkKalmanLinearEstimator.h.


Member Function Documentation

template<class T, unsigned int VEstimatorDimension>
void itk::KalmanLinearEstimator< T, VEstimatorDimension >::ClearEstimation void    [inline]
 

This method resets the estimator. It set all the parameters to null. The covariance matrix is not changed.

See also:
Estimator , Variance , ClearVariance

Definition at line 73 of file itkKalmanLinearEstimator.h.

template<class T, unsigned int VEstimatorDimension>
void itk::KalmanLinearEstimator< T, VEstimatorDimension >::ClearVariance void    [inline]
 

This method resets the covariance matrix. It is set to an identity matrix

See also:
Estimator , Variance , ClearEstimation

Definition at line 78 of file itkKalmanLinearEstimator.h.

References vnl_matrix< T >::set_identity().

template<class T, unsigned int VEstimatorDimension>
const VectorType& itk::KalmanLinearEstimator< T, VEstimatorDimension >::GetEstimator void    const [inline]
 

This method returns the vector of estimated parameters

See also:
Estimator

Definition at line 106 of file itkKalmanLinearEstimator.h.

template<class T, unsigned int VEstimatorDimension>
const MatrixType& itk::KalmanLinearEstimator< T, VEstimatorDimension >::GetVariance void    const [inline]
 

This method returns the covariance matrix of the estimated parameters

See also:
Variance

Definition at line 111 of file itkKalmanLinearEstimator.h.

template<class T, unsigned int VEstimatorDimension>
itk::KalmanLinearEstimator< T, VEstimatorDimension >::itkStaticConstMacro Dimension   ,
unsigned    int,
VEstimatorDimension   
 

Dimension of the vector of parameters to be estimated. It is equivalent to the number of parameters to estimate.

template<class T, unsigned int VEstimatorDimension>
void itk::KalmanLinearEstimator< T, VEstimatorDimension >::SetVariance const MatrixType   m [inline]
 

This method sets the covariance matrix to known matrix. It is intended to initialize the estimator with a priori information about the statistical distribution of the parameters. It can also be used to resume the operation of a previously used estimator using it last known state.

See also:
Estimator , Variance , ClearEstimation

Definition at line 101 of file itkKalmanLinearEstimator.h.

template<class T, unsigned int VEstimatorDimension>
void itk::KalmanLinearEstimator< T, VEstimatorDimension >::SetVariance const ValueType   var = 1.0 [inline]
 

This method sets the covariance matrix to a diagonal matrix with equal values. It is useful when the variance of all the parameters be estimated are the same and the parameters are considered independents.

See also:
Estimator , Variance , ClearEstimation

Definition at line 89 of file itkKalmanLinearEstimator.h.

References vnl_matrix< T >::set_identity(), and itk::KalmanLinearEstimator< T, VEstimatorDimension >::ValueType.

template<class T, unsigned int VEstimatorDimension>
void itk::KalmanLinearEstimator< T, VEstimatorDimension >::UpdateWithNewMeasure const ValueType   newMeasure,
const VectorType   newPredictor
 

Update the estimation using the information provided by a new measure along with a new line of the linear predictor. This method is the one that should be called iteratively in order to estimate the parameter's vector. It internally updates the covariance matrix.

Definition at line 139 of file itkKalmanLinearEstimator.h.

References dot_product().


The documentation for this class was generated from the following file:
Generated at Fri May 21 01:46:33 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000