predictAsync method
Implementation
Future<Mat> predictAsync({Mat? control}) async => cvRunAsync(
(callback) => control == null
? cvideo.KalmanFilter_Predict_Async(ref, callback)
: cvideo.KalmanFilter_PredictWithParams_Async(ref, control.ref, callback),
matCompleter,
);