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<cfeatures2d.FastFeatureDetector>();
  cvRun(() => cfeatures2d.FastFeatureDetector_Create(p));
  return FastFeatureDetector._(p);
}