AgastFeatureDetector

Objective-C

@interface AgastFeatureDetector : Feature2D

Swift

class AgastFeatureDetector : Feature2D

Wrapping class for feature detection using the AGAST method. :

Member of Features2d

Class Constants

  • Declaration

    Objective-C

    @property (class, readonly) int THRESHOLD

    Swift

    class var THRESHOLD: Int32 { get }
  • Declaration

    Objective-C

    @property (class, readonly) int NONMAX_SUPPRESSION

    Swift

    class var NONMAX_SUPPRESSION: Int32 { get }

Methods

  • Declaration

    Objective-C

    - (AgastDetectorType)getType NS_SWIFT_NAME(getType());

    Swift

    func getType() -> AgastDetectorType
  • Declaration

    Objective-C

    + (AgastFeatureDetector*)create:(int)threshold nonmaxSuppression:(BOOL)nonmaxSuppression type:(AgastDetectorType)type NS_SWIFT_NAME(create(threshold:nonmaxSuppression:type:));

    Swift

    class func create(threshold: Int32, nonmaxSuppression: Bool, type: AgastDetectorType) -> AgastFeatureDetector
  • Declaration

    Objective-C

    + (AgastFeatureDetector*)create:(int)threshold nonmaxSuppression:(BOOL)nonmaxSuppression NS_SWIFT_NAME(create(threshold:nonmaxSuppression:));

    Swift

    class func create(threshold: Int32, nonmaxSuppression: Bool) -> AgastFeatureDetector
  • Declaration

    Objective-C

    + (AgastFeatureDetector*)create:(int)threshold NS_SWIFT_NAME(create(threshold:));

    Swift

    class func create(threshold: Int32) -> AgastFeatureDetector
  • Declaration

    Objective-C

    + (AgastFeatureDetector*)create NS_SWIFT_NAME(create());

    Swift

    class func create() -> AgastFeatureDetector
  • Declaration

    Objective-C

    - (nonnull NSString *)getDefaultName;

    Swift

    func getDefaultName() -> String
  • Declaration

    Objective-C

    - (BOOL)getNonmaxSuppression NS_SWIFT_NAME(getNonmaxSuppression());

    Swift

    func getNonmaxSuppression() -> Bool
  • Declaration

    Objective-C

    - (int)getThreshold NS_SWIFT_NAME(getThreshold());

    Swift

    func getThreshold() -> Int32
  • Declaration

    Objective-C

    - (void)setNonmaxSuppression:(BOOL)f NS_SWIFT_NAME(setNonmaxSuppression(f:));

    Swift

    func setNonmaxSuppression(f: Bool)
  • Declaration

    Objective-C

    - (void)setThreshold:(int)threshold NS_SWIFT_NAME(setThreshold(threshold:));

    Swift

    func setThreshold(threshold: Int32)
  • Declaration

    Objective-C

    - (void)setType:(AgastDetectorType)type NS_SWIFT_NAME(setType(type:));

    Swift

    func setType(type: AgastDetectorType)