The CvKalman type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() | AllocatedMemory |
Gets or sets a memory address allocated by AllocMemory.
(Inherited from DisposableObject.) |
![]() | AllocatedMemorySize |
Gets or sets the byte length of the allocated memory
(Inherited from DisposableObject.) |
![]() | ControlMatrix |
Control matrix (B) (it is not used if there is no control
|
![]() | CP |
Number of control vector dimensions
|
![]() | CvPtr |
Native pointer of OpenCV structure
(Inherited from DisposableCvObject.) |
![]() | DP |
Number of state vector dimensions
|
![]() | DynamMatr |
transition_matrix->data.fl
|
![]() | ErrorCovPost |
Posteriori error estimate covariance matrix (P(k)): P(k)=(I-K(k)*H)*P'(k)
|
![]() | ErrorCovPre |
Priori error estimate covariance matrix (P'(k)): P'(k)=A*P(k-1)*At + Q)
|
![]() | Gain |
Kalman gain matrix (K(k)): K(k)=P'(k)*Ht*inv(H*P'(k)*Ht+R)
|
![]() | IsDisposed |
Gets a value indicating whether this instance has been disposed.
(Inherited from DisposableObject.) |
![]() | IsEnabledDispose |
Gets or sets a value indicating whether you permit disposing this instance.
(Inherited from DisposableObject.) |
![]() | KalmGainMatr |
gain->data.fl
|
![]() | MeasurementMatr |
measurement_matrix->data.fl
|
![]() | MeasurementMatrix |
Measurement matrix (H)
|
![]() | MeasurementNoiseCov |
Measurement noise covariance matrix (R)
|
![]() | MNCovariance |
measurement_noise_cov->data.fl
|
![]() | MP |
Number of measurement vector dimensions
|
![]() | PNCovariance |
process_noise_cov->data.fl
|
![]() | PosterErrorCovariance |
error_cov_post->data.fl
|
![]() | PosterState |
state_pre->data.fl
|
![]() | PriorErrorCovariance |
error_cov_pre->data.fl
|
![]() | PriorState |
state_post->data.fl
|
![]() | ProcessNoiseCov |
Process noise covariance matrix (Q)
|
![]() | StatePost |
Corrected state (x(k)): x(k)=x'(k)+K(k)*(z(k)-H*x'(k))
|
![]() | StatePre |
Predicted state (x'(k)): x(k)=A*x(k-1)+B*u(k)
|
![]() | Temp1 |
Temporary matrix 1
|
![]() | Temp1Data |
temp1->data.fl
|
![]() | Temp2 |
Temporary matrix 2
|
![]() | Temp2Data |
temp2->data.fl
|
![]() | Temp3 |
Temporary matrix 3
|
![]() | Temp4 |
Temporary matrix 4
|
![]() | Temp5 |
Temporary matrix 5
|
![]() | TransitionMatrix |
State transition matrix (A)
|
See Also