#include <kalmanfilter.h>
Collaboration diagram for tag::KalmanFilter< State, Model >:
Public Types | |
| typedef State | state_type |
| typedef Model | model_type |
Public Member Functions | |
| KalmanFilter () | |
| void | predict (double dt) |
| template<class Measurement> | |
| void | filter (Measurement &m) |
Public Attributes | |
| TooN::Matrix< State::STATE_DIMENSION > | identity |
| identity matrix of the right size, used in the measurement equations | |
| State | state |
| the current state of the filter | |
| Model | model |
| the process model used by the filter | |
|
|||||
|
|
|
|||||
|
|
|
|||||||||
|
|
|
||||||||||||||
|
incorporates a measurement
|
|
||||||||||
|
predicts the state by applying the process model over the time interval dt
|
|
|||||
|
identity matrix of the right size, used in the measurement equations
|
|
|||||
|
the process model used by the filter
|
|
|||||
|
the current state of the filter
|
1.3.9.1