predictAsync method

Future<Mat> predictAsync({
  1. Mat? control,
})

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,
    );