getStructuringElementAsync static method
Returns a run length encoded structuring element of the specified size and shape.
Implementation
static Future<Mat> getStructuringElementAsync(int shape, (int, int) ksize) async => cvRunAsync(
(callback) => cffi.ximgproc_rl_getStructuringElement_Async(shape, ksize.toSize().ref, callback),
matCompleter,
);