Create a Kalman Filter using the specific values
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)
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)
- 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