emptyAsync static method

Future<KAZE> emptyAsync()

returns a new KAZE algorithm

For further details, please see: https://docs.opencv.org/master/d3/d61/classcv_1_1KAZE.html

Implementation

static Future<KAZE> emptyAsync() async => cvRunAsync(
      cfeatures2d.KAZE_Create_Async,
      (c, p) => c.complete(KAZE.fromPointer(p.cast<cfeatures2d.KAZE>())),
    );