MatAsync extension

on

Methods

cloneAsync() Future<Mat>

Available on Mat, provided by the MatAsync extension

colRangeAsync(int start, int end) Future<Mat>

Available on Mat, provided by the MatAsync extension

convertToAsync(MatType type, {double alpha = 1, double beta = 0}) Future<Mat>

Available on Mat, provided by the MatAsync extension

copyToAsync(Mat dst, {Mat? mask}) Future<void>

Available on Mat, provided by the MatAsync extension

meanAsync({Mat? mask}) Future<Scalar>

Available on Mat, provided by the MatAsync extension

patchNaNsAsync({double val = 0.0}) Future<void>

Available on Mat, provided by the MatAsync extension

PatchNaNs converts NaN's to zeros.
regionAsync(Rect rect) Future<Mat>

Available on Mat, provided by the MatAsync extension

reshapeAsync(int cn, [int rows = 0]) Future<Mat>

Available on Mat, provided by the MatAsync extension

rotateAsync(int rotationCode, {bool inplace = false}) Future<Mat>

Available on Mat, provided by the MatAsync extension

rowRangeAsync(int start, int end) Future<Mat>

Available on Mat, provided by the MatAsync extension

sqrtAsync() Future<Mat>

Available on Mat, provided by the MatAsync extension

Calculates a square root of array elements.
sumAsync() Future<Scalar>

Available on Mat, provided by the MatAsync extension

Sum calculates the per-channel pixel sum of an image.

Static Methods

createAsync({int rows = 0, int cols = 0, int r = 0, int g = 0, int b = 0, MatType? type}) Future<Mat>

Available on Mat, provided by the MatAsync extension

emptyAsync() Future<Mat>

Available on Mat, provided by the MatAsync extension

eyeAsync(int rows, int cols, MatType type) Future<Mat>

Available on Mat, provided by the MatAsync extension

fromScalarAsync(int rows, int cols, MatType type, Scalar s) Future<Mat>

Available on Mat, provided by the MatAsync extension

onesAsync(int rows, int cols, MatType type) Future<Mat>

Available on Mat, provided by the MatAsync extension

zerosAsync(int rows, int cols, MatType type) Future<Mat>

Available on Mat, provided by the MatAsync extension