123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- //
- // This file is auto-generated. Please don't modify it!
- //
- #pragma once
- #ifdef __cplusplus
- //#import "opencv.hpp"
- #import "opencv2/imgproc.hpp"
- #else
- #define CV_EXPORTS
- #endif
- #import <Foundation/Foundation.h>
- #import "Algorithm.h"
- @class Mat;
- @class Point2i;
- NS_ASSUME_NONNULL_BEGIN
- // C++: class GeneralizedHough
- /**
- * finds arbitrary template in the grayscale image using Generalized Hough Transform
- *
- * Member of `Imgproc`
- */
- CV_EXPORTS @interface GeneralizedHough : Algorithm
- #ifdef __cplusplus
- @property(readonly)cv::Ptr<cv::GeneralizedHough> nativePtrGeneralizedHough;
- #endif
- #ifdef __cplusplus
- - (instancetype)initWithNativePtr:(cv::Ptr<cv::GeneralizedHough>)nativePtr;
- + (instancetype)fromNative:(cv::Ptr<cv::GeneralizedHough>)nativePtr;
- #endif
- #pragma mark - Methods
- //
- // void cv::GeneralizedHough::setTemplate(Mat templ, Point templCenter = Point(-1, -1))
- //
- - (void)setTemplate:(Mat*)templ templCenter:(Point2i*)templCenter NS_SWIFT_NAME(setTemplate(templ:templCenter:));
- - (void)setTemplate:(Mat*)templ NS_SWIFT_NAME(setTemplate(templ:));
- //
- // void cv::GeneralizedHough::setTemplate(Mat edges, Mat dx, Mat dy, Point templCenter = Point(-1, -1))
- //
- - (void)setTemplate:(Mat*)edges dx:(Mat*)dx dy:(Mat*)dy templCenter:(Point2i*)templCenter NS_SWIFT_NAME(setTemplate(edges:dx:dy:templCenter:));
- - (void)setTemplate:(Mat*)edges dx:(Mat*)dx dy:(Mat*)dy NS_SWIFT_NAME(setTemplate(edges:dx:dy:));
- //
- // void cv::GeneralizedHough::detect(Mat image, Mat& positions, Mat& votes = Mat())
- //
- - (void)detect:(Mat*)image positions:(Mat*)positions votes:(Mat*)votes NS_SWIFT_NAME(detect(image:positions:votes:));
- - (void)detect:(Mat*)image positions:(Mat*)positions NS_SWIFT_NAME(detect(image:positions:));
- //
- // void cv::GeneralizedHough::detect(Mat edges, Mat dx, Mat dy, Mat& positions, Mat& votes = Mat())
- //
- - (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:));
- - (void)detect:(Mat*)edges dx:(Mat*)dx dy:(Mat*)dy positions:(Mat*)positions NS_SWIFT_NAME(detect(edges:dx:dy:positions:));
- //
- // void cv::GeneralizedHough::setCannyLowThresh(int cannyLowThresh)
- //
- - (void)setCannyLowThresh:(int)cannyLowThresh NS_SWIFT_NAME(setCannyLowThresh(cannyLowThresh:));
- //
- // int cv::GeneralizedHough::getCannyLowThresh()
- //
- - (int)getCannyLowThresh NS_SWIFT_NAME(getCannyLowThresh());
- //
- // void cv::GeneralizedHough::setCannyHighThresh(int cannyHighThresh)
- //
- - (void)setCannyHighThresh:(int)cannyHighThresh NS_SWIFT_NAME(setCannyHighThresh(cannyHighThresh:));
- //
- // int cv::GeneralizedHough::getCannyHighThresh()
- //
- - (int)getCannyHighThresh NS_SWIFT_NAME(getCannyHighThresh());
- //
- // void cv::GeneralizedHough::setMinDist(double minDist)
- //
- - (void)setMinDist:(double)minDist NS_SWIFT_NAME(setMinDist(minDist:));
- //
- // double cv::GeneralizedHough::getMinDist()
- //
- - (double)getMinDist NS_SWIFT_NAME(getMinDist());
- //
- // void cv::GeneralizedHough::setDp(double dp)
- //
- - (void)setDp:(double)dp NS_SWIFT_NAME(setDp(dp:));
- //
- // double cv::GeneralizedHough::getDp()
- //
- - (double)getDp NS_SWIFT_NAME(getDp());
- //
- // void cv::GeneralizedHough::setMaxBufferSize(int maxBufferSize)
- //
- - (void)setMaxBufferSize:(int)maxBufferSize NS_SWIFT_NAME(setMaxBufferSize(maxBufferSize:));
- //
- // int cv::GeneralizedHough::getMaxBufferSize()
- //
- - (int)getMaxBufferSize NS_SWIFT_NAME(getMaxBufferSize());
- @end
- NS_ASSUME_NONNULL_END
|