FastFeatureDetector

Objective-C

@interface FastFeatureDetector : Feature2D

Swift

class FastFeatureDetector : Feature2D

Wrapping class for feature detection using the FAST 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 }
  • Declaration

    Objective-C

    @property (class, readonly) int FAST_N

    Swift

    class var FAST_N: Int32 { get }

Methods

  • Declaration

    Objective-C

    - (FastDetectorType)getType NS_SWIFT_NAME(getType());

    Swift

    func getType() -> FastDetectorType
  • Declaration

    Objective-C

    + (FastFeatureDetector*)create:(int)threshold nonmaxSuppression:(BOOL)nonmaxSuppression type:(FastDetectorType)type NS_SWIFT_NAME(create(threshold:nonmaxSuppression:type:));

    Swift

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

    Objective-C

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

    Swift

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

    Objective-C

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

    Swift

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

    Objective-C

    + (FastFeatureDetector*)create NS_SWIFT_NAME(create());

    Swift

    class func create() -> FastFeatureDetector
  • 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:(FastDetectorType)type NS_SWIFT_NAME(setType(type:));

    Swift

    func setType(type: FastDetectorType)