detectAsync method
Detect keypoints in an image using GFTTDetector.
For further details, please see: https://docs.opencv.org/master/d0/d13/classcv_1_1Feature2D.html#aa4e9a7082ec61ebc108806704fbd7887
Implementation
Future<VecKeyPoint> detectAsync(Mat src) async {
final ret = VecKeyPoint();
return cvRunAsync0((callback) => cfeatures2d.cv_GFTTDetector_detect(ref, src.ref, ret.ptr, callback), (
c,
) {
return c.complete(ret);
});
}