GeneralizedHoughBallard

Objective-C

@interface GeneralizedHoughBallard : GeneralizedHough

Swift

class GeneralizedHoughBallard : GeneralizedHough

finds arbitrary template in the grayscale image using Generalized Hough Transform

Detects position only without translation and rotation CITE: Ballard1981 .

Member of Imgproc

Methods

  • Declaration

    Objective-C

    - (int)getLevels NS_SWIFT_NAME(getLevels());

    Swift

    func getLevels() -> Int32
  • Declaration

    Objective-C

    - (int)getVotesThreshold NS_SWIFT_NAME(getVotesThreshold());

    Swift

    func getVotesThreshold() -> Int32
  • Declaration

    Objective-C

    - (void)setLevels:(int)levels NS_SWIFT_NAME(setLevels(levels:));

    Swift

    func setLevels(levels: Int32)
  • Declaration

    Objective-C

    - (void)setVotesThreshold:(int)votesThreshold NS_SWIFT_NAME(setVotesThreshold(votesThreshold:));

    Swift

    func setVotesThreshold(votesThreshold: Int32)