AgastFeatureDetector.empty constructor

AgastFeatureDetector.empty()

returns a new AgastFeatureDetector algorithm

For further details, please see: https://docs.opencv.org/master/d7/d19/classcv_1_1AgastFeatureDetector.html

Implementation

factory AgastFeatureDetector.empty() {
  final p = calloc<cfeatures2d.AgastFeatureDetector>();
  cvRun(() => cfeatures2d.AgastFeatureDetector_Create(p));
  return AgastFeatureDetector._(p);
}