Emgu.CV.Kalman.Predict C# (CSharp) Метод

Predict() публичный Метод

Estimates the subsequent stochastic model state by its current state
public Predict ( ) : Matrix
Результат Matrix
        public Matrix<float> Predict()
        {
            return Predict(null);
        }

Same methods

Kalman::Predict ( Matrix control ) : Matrix

Usage Example

 public Matrix<float> FilterPoints(Kalman kalman, float x, float y, float z)
 {
     Matrix<float> prediction = kalman.Predict();
     Matrix<float> estimated = kalman.Correct(new Matrix<float>(new[] { x, y, z }));
     Matrix<float> results = new Matrix<float>(new[,]
     {
         { prediction[0, 0], prediction[1, 0], prediction[2, 0] },
         { estimated[0, 0], estimated[1, 0], estimated[2, 0] }
     });
     return results;
 }
All Usage Examples Of Emgu.CV.Kalman::Predict