AgastFeatureDetector.create constructor
AgastFeatureDetector.create({
- int threshold = 10,
- bool nonmaxSuppression = true,
- AgastDetectorType type = AgastDetectorType.OAST_9_16,
create (int threshold=10, bool nonmaxSuppression=true, AgastFeatureDetector::DetectorType type=AgastFeatureDetector::OAST_9_16)
Implementation
factory AgastFeatureDetector.create({
int threshold = 10,
bool nonmaxSuppression = true,
AgastDetectorType type = AgastDetectorType.OAST_9_16,
}) {
final p = calloc<cvg.AgastFeatureDetector>();
cvRun(() => cfeatures2d.cv_AgastFeatureDetector_create_1(threshold, nonmaxSuppression, type.value, p));
return AgastFeatureDetector._(p);
}