createAsync static method
Implementation
static Future<CLAHE> createAsync([
double clipLimit = 40,
(int width, int height) tileGridSize = (8, 8),
]) async =>
cvRunAsync(
(callback) => cimgproc.CLAHE_CreateWithParams_Async(clipLimit, tileGridSize.cvd.ref, callback),
(c, p) => c.complete(CLAHE.fromPointer(p.cast<cimgproc.CLAHE>())),
);