backSubstAsync static method
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),
);
}