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<cvg.AgastFeatureDetector>();
cvRun(() => cfeatures2d.cv_AgastFeatureDetector_create(p));
return AgastFeatureDetector._(p);
}