eyeAsync static method

Future<Mat> eyeAsync(
  1. int rows,
  2. int cols,
  3. MatType type
)

Implementation

static Future<Mat> eyeAsync(int rows, int cols, MatType type) async =>
    cvRunAsync((callback) => ccore.Mat_Eye_Async(rows, cols, type.value, callback), matCompleter);