Exemplo n.º 1
0
 /// <summary>
 /// Create AGAST using the specific values
 /// </summary>
 /// <param name="threshold">Threshold</param>
 /// <param name="nonmaxSuppression">Non maximum suppression</param>
 /// <param name="type">Type</param>
 public AgastFeatureDetector(
     int threshold          = 10,
     bool nonmaxSuppression = true,
     Type type = Type.OAST_9_16)
 {
     _ptr = Features2DInvoke.cveAgastFeatureDetectorCreate(
         threshold, nonmaxSuppression, type,
         ref _feature2D, ref _sharedPtr);
 }