FastFeatureDetector.empty constructor
FastFeatureDetector.empty()
returns a new FastFeatureDetector algorithm
For further details, please see: https://docs.opencv.org/master/df/d74/classcv_1_1FastFeatureDetector.html
Implementation
factory FastFeatureDetector.empty() {
final p = calloc<cvg.FastFeatureDetector>();
cvRun(() => cfeatures2d.cv_FastFeatureDetector_create(p));
return FastFeatureDetector._(p);
}