GeneralizedHough

Objective-C

@interface GeneralizedHough : Algorithm

Swift

class GeneralizedHough : Algorithm

finds arbitrary template in the grayscale image using Generalized Hough Transform

Member of Imgproc

Methods

  • Declaration

    Objective-C

    - (double)getDp NS_SWIFT_NAME(getDp());

    Swift

    func getDp() -> Double
  • Declaration

    Objective-C

    - (double)getMinDist NS_SWIFT_NAME(getMinDist());

    Swift

    func getMinDist() -> Double
  • Declaration

    Objective-C

    - (int)getCannyHighThresh NS_SWIFT_NAME(getCannyHighThresh());

    Swift

    func getCannyHighThresh() -> Int32
  • Declaration

    Objective-C

    - (int)getCannyLowThresh NS_SWIFT_NAME(getCannyLowThresh());

    Swift

    func getCannyLowThresh() -> Int32
  • Declaration

    Objective-C

    - (int)getMaxBufferSize NS_SWIFT_NAME(getMaxBufferSize());

    Swift

    func getMaxBufferSize() -> Int32
  • Declaration

    Objective-C

    - (void)detect:(Mat*)edges dx:(Mat*)dx dy:(Mat*)dy positions:(Mat*)positions votes:(Mat*)votes NS_SWIFT_NAME(detect(edges:dx:dy:positions:votes:));

    Swift

    func detect(edges: Mat, dx: Mat, dy: Mat, positions: Mat, votes: Mat)
  • Declaration

    Objective-C

    - (void)detect:(Mat*)edges dx:(Mat*)dx dy:(Mat*)dy positions:(Mat*)positions NS_SWIFT_NAME(detect(edges:dx:dy:positions:));

    Swift

    func detect(edges: Mat, dx: Mat, dy: Mat, positions: Mat)
  • Declaration

    Objective-C

    - (void)detect:(Mat*)image positions:(Mat*)positions votes:(Mat*)votes NS_SWIFT_NAME(detect(image:positions:votes:));

    Swift

    func detect(image: Mat, positions: Mat, votes: Mat)
  • Declaration

    Objective-C

    - (void)detect:(Mat*)image positions:(Mat*)positions NS_SWIFT_NAME(detect(image:positions:));

    Swift

    func detect(image: Mat, positions: Mat)
  • Declaration

    Objective-C

    - (void)setCannyHighThresh:(int)cannyHighThresh NS_SWIFT_NAME(setCannyHighThresh(cannyHighThresh:));

    Swift

    func setCannyHighThresh(cannyHighThresh: Int32)
  • Declaration

    Objective-C

    - (void)setCannyLowThresh:(int)cannyLowThresh NS_SWIFT_NAME(setCannyLowThresh(cannyLowThresh:));

    Swift

    func setCannyLowThresh(cannyLowThresh: Int32)
  • Declaration

    Objective-C

    - (void)setDp:(double)dp NS_SWIFT_NAME(setDp(dp:));

    Swift

    func setDp(dp: Double)
  • Declaration

    Objective-C

    - (void)setMaxBufferSize:(int)maxBufferSize NS_SWIFT_NAME(setMaxBufferSize(maxBufferSize:));

    Swift

    func setMaxBufferSize(maxBufferSize: Int32)
  • Declaration

    Objective-C

    - (void)setMinDist:(double)minDist NS_SWIFT_NAME(setMinDist(minDist:));

    Swift

    func setMinDist(minDist: Double)
  • Declaration

    Objective-C

    - (void)setTemplate:(Mat*)edges dx:(Mat*)dx dy:(Mat*)dy templCenter:(Point2i*)templCenter NS_SWIFT_NAME(setTemplate(edges:dx:dy:templCenter:));

    Swift

    func setTemplate(edges: Mat, dx: Mat, dy: Mat, templCenter: Point2i)
  • Declaration

    Objective-C

    - (void)setTemplate:(Mat*)edges dx:(Mat*)dx dy:(Mat*)dy NS_SWIFT_NAME(setTemplate(edges:dx:dy:));

    Swift

    func setTemplate(edges: Mat, dx: Mat, dy: Mat)
  • Declaration

    Objective-C

    - (void)setTemplate:(Mat*)templ templCenter:(Point2i*)templCenter NS_SWIFT_NAME(setTemplate(templ:templCenter:));

    Swift

    func setTemplate(templ: Mat, templCenter: Point2i)
  • Declaration

    Objective-C

    - (void)setTemplate:(Mat*)templ NS_SWIFT_NAME(setTemplate(templ:));

    Swift

    func setTemplate(templ: Mat)