Méthode | Description | |
---|---|---|
Correct ( Matrix |
Adjusts stochastic model state on the basis of the given measurement of the model state The function stores adjusted state at kalman->state_post and returns it on output |
|
Kalman ( Matrix |
Create a Kalman Filter using the specific values
|
|
Kalman ( Matrix |
Create a Kalman Filter using the specific values
|
|
Kalman ( int dynamParams, int measureParams, int controlParams ) : System |
Allocates CvKalman and all its matrices and initializes them somehow.
|
|
Predict ( ) : Matrix |
Estimates the subsequent stochastic model state by its current state
|
|
Predict ( Matrix |
Estimates the subsequent stochastic model state by its current state and stores it at PredictedState
|
Méthode | Description | |
---|---|---|
DisposeObject ( ) : void |
Release unmanaged resource
|
|
ReleaseManagedResources ( ) : void |
Release all the matrix associated to this object
|
public Correct ( Matrix |
||
measurement | Matrix |
The measurement data |
Résultat | Matrix |
public Kalman ( Matrix |
||
initialState | Matrix |
The m x 1 matrix |
transitionMatrix | Matrix |
The m x m matrix (A) |
measurementMatrix | Matrix |
The n x m matrix (H) |
processNoiseCovarianceMatrix | Matrix |
The n x n matrix (Q) |
measurementNoiseCovarianceMatrix | Matrix |
The m x m matrix (R) |
Résultat | System |
public Kalman ( Matrix |
||
initialState | Matrix |
The m x 1 matrix |
transitionMatrix | Matrix |
The m x m matrix (A) |
controlMatrix | Matrix |
The m x n matrix (B) |
measurementMatrix | Matrix |
The n x m matrix (H) |
processNoiseCovarianceMatrix | Matrix |
The n x n matrix (Q) |
measurementNoiseCovarianceMatrix | Matrix |
The m x m matrix (R) |
Résultat | System |
public Kalman ( int dynamParams, int measureParams, int controlParams ) : System | ||
dynamParams | int | dimensionality of the state vector |
measureParams | int | dimensionality of the measurement vector |
controlParams | int | dimensionality of the control vector |
Résultat | System |
public Predict ( Matrix |
||
control | Matrix |
the control vector |
Résultat | Matrix |
protected ReleaseManagedResources ( ) : void | ||
Résultat | void |