Create a Kalman Filter using the specific values
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)
Syntax
| | | | | | | | |
| C# | | | Visual Basic | | | Visual C++ | |
Parameters
- initialState
- Matrix<(Of <(<'Single>)>)>
The m x 1 matrix
- transitionMatrix
- Matrix<(Of <(<'Single>)>)>
The m x m matrix (A)
- controlMatrix
- Matrix<(Of <(<'Single>)>)>
The m x n matrix (B)
- measurementMatrix
- Matrix<(Of <(<'Single>)>)>
The n x m matrix (H)
- processNoiseCovarianceMatrix
- Matrix<(Of <(<'Single>)>)>
The n x n matrix (Q)
- measurementNoiseCovarianceMatrix
- Matrix<(Of <(<'Single>)>)>
The m x m matrix (R)
See Also