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 => cvRunAsync(
      (callback) => ccore.SVD_backSubst_Async(w.ref, u.ref, vt.ref, rhs.ref, callback),
      matCompleter,
    );