Core implementation for Kalman sensor.
More...
#include <Kalman.h>
|
|
cv::Mat | z |
| | Latest measurement vector (m*1)
|
| |
|
cv::Mat | H |
| | The matrix (m*n) mapping Kalman state vector into this sensor's measurements vector.
|
| |
|
cv::Mat | K |
| | The matrix (n*m) containing Kalman gain (something between 0 and H^-1). In this core-implementation we assume this to be precalculated. In KalmanSensor this is updated using update_K .
|
| |
|
|
int | n |
| |
|
int | m |
| |
|
cv::Mat | H_trans |
| |
|
cv::Mat | z_pred |
| |
|
cv::Mat | z_residual |
| |
|
cv::Mat | x_gain |
| |
Core implementation for Kalman sensor.
Definition at line 40 of file Kalman.h.
◆ KalmanSensorCore()
Constructor.
- Parameters
-
| _n | The number of items in the Kalman state vector |
| _m | The number of measurements given by this sensor |
The documentation for this class was generated from the following file: