emptyAsync static method

Future<FastFeatureDetector> emptyAsync()

returns a new FastFeatureDetector algorithm

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

Implementation

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