backSubstAsync static method

Future<Mat> backSubstAsync(
  1. Mat w,
  2. Mat u,
  3. Mat vt,
  4. Mat rhs, {
  5. Mat? dst,
})

Implementation

static Future<Mat> backSubstAsync(Mat w, Mat u, Mat vt, Mat rhs, {Mat? dst}) async {
  dst ??= Mat.empty();
  return cvRunAsync0(
    (callback) => ccore.cv_SVD_backSubst(w.ref, u.ref, vt.ref, rhs.ref, dst!.ref, callback),
    (c) => c.complete(dst),
  );
}