StarDetector

Objective-C

@interface StarDetector : Feature2D

Swift

class StarDetector : Feature2D

The class implements the keypoint detector introduced by CITE: Agrawal08, synonym of StarDetector. :

Member of Xfeatures2d

Methods

  • Declaration

    Objective-C

    + (StarDetector*)create:(int)maxSize responseThreshold:(int)responseThreshold lineThresholdProjected:(int)lineThresholdProjected lineThresholdBinarized:(int)lineThresholdBinarized suppressNonmaxSize:(int)suppressNonmaxSize NS_SWIFT_NAME(create(maxSize:responseThreshold:lineThresholdProjected:lineThresholdBinarized:suppressNonmaxSize:));

    Swift

    class func create(maxSize: Int32, responseThreshold: Int32, lineThresholdProjected: Int32, lineThresholdBinarized: Int32, suppressNonmaxSize: Int32) -> StarDetector
  • Declaration

    Objective-C

    + (StarDetector*)create:(int)maxSize responseThreshold:(int)responseThreshold lineThresholdProjected:(int)lineThresholdProjected lineThresholdBinarized:(int)lineThresholdBinarized NS_SWIFT_NAME(create(maxSize:responseThreshold:lineThresholdProjected:lineThresholdBinarized:));

    Swift

    class func create(maxSize: Int32, responseThreshold: Int32, lineThresholdProjected: Int32, lineThresholdBinarized: Int32) -> StarDetector
  • Declaration

    Objective-C

    + (StarDetector*)create:(int)maxSize responseThreshold:(int)responseThreshold lineThresholdProjected:(int)lineThresholdProjected NS_SWIFT_NAME(create(maxSize:responseThreshold:lineThresholdProjected:));

    Swift

    class func create(maxSize: Int32, responseThreshold: Int32, lineThresholdProjected: Int32) -> StarDetector
  • Declaration

    Objective-C

    + (StarDetector*)create:(int)maxSize responseThreshold:(int)responseThreshold NS_SWIFT_NAME(create(maxSize:responseThreshold:));

    Swift

    class func create(maxSize: Int32, responseThreshold: Int32) -> StarDetector
  • Declaration

    Objective-C

    + (StarDetector*)create:(int)maxSize NS_SWIFT_NAME(create(maxSize:));

    Swift

    class func create(maxSize: Int32) -> StarDetector
  • Declaration

    Objective-C

    + (StarDetector*)create NS_SWIFT_NAME(create());

    Swift

    class func create() -> StarDetector