emptyAsync static method

Future<GFTTDetector> emptyAsync()

returns a new GFTTDetector algorithm

For further details, please see: https://docs.opencv.org/master/df/d21/classcv_1_1GFTTDetector.html

Implementation

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