computeAsync static method

Future<(Mat, Mat, Mat)> computeAsync(
  1. Mat src, {
  2. int flags = 0,
})

async version of compute

Implementation

static Future<(Mat w, Mat u, Mat vt)> computeAsync(Mat src, {int flags = 0}) async =>
    cvRunAsync3((callback) => ccore.SVD_Compute_Async(src.ref, flags, callback), matCompleter3);