emptyAsync static method

Future<SIFT> emptyAsync()

returns a new SIFT algorithm

For further details, please see: https://docs.opencv.org/master/d5/d3c/classcv_1_1xfeatures2d_1_1SIFT.html

Implementation

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