MatAsync extension
- on
Methods
-
cloneAsync(
) → Future< Mat> -
colRangeAsync(
int start, int end) → Future< Mat> -
convertToAsync(
MatType type, {double alpha = 1, double beta = 0}) → Future< Mat> -
copyToAsync(
Mat dst, {Mat? mask}) → Future< void> -
meanAsync(
{Mat? mask}) → Future< Scalar> -
patchNaNsAsync(
{double val = 0.0}) → Future< void> - PatchNaNs converts NaN's to zeros.
-
regionAsync(
Rect rect) → Future< Mat> -
reshapeAsync(
int cn, int rows) → Future< Mat> -
rotateAsync(
int rotationCode) → Future< Mat> -
rowRangeAsync(
int start, int end) → Future< Mat> -
sqrtAsync(
) → Future< Mat> - Calculates a square root of array elements.
-
sumAsync(
) → Future< Scalar> - 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> -
emptyAsync(
) → Future< Mat> -
eyeAsync(
int rows, int cols, MatType type) → Future< Mat> -
fromScalarAsync(
int rows, int cols, MatType type, Scalar s) → Future< Mat> -
fromVecAsync(
Vec< Struct, dynamic> vec) → Future<Mat> -
onesAsync(
int rows, int cols, MatType type) → Future< Mat> -
zerosAsync(
int rows, int cols, MatType type) → Future< Mat>