mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 00:03:03 +04:00
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
This commit is contained in:
@@ -892,52 +892,52 @@ class CV_EXPORTS_W GeneralizedHoughGuil : public GeneralizedHough
|
||||
{
|
||||
public:
|
||||
//! Angle difference in degrees between two points in feature.
|
||||
virtual void setXi(double xi) = 0;
|
||||
virtual double getXi() const = 0;
|
||||
CV_WRAP virtual void setXi(double xi) = 0;
|
||||
CV_WRAP virtual double getXi() const = 0;
|
||||
|
||||
//! Feature table levels.
|
||||
virtual void setLevels(int levels) = 0;
|
||||
virtual int getLevels() const = 0;
|
||||
CV_WRAP virtual void setLevels(int levels) = 0;
|
||||
CV_WRAP virtual int getLevels() const = 0;
|
||||
|
||||
//! Maximal difference between angles that treated as equal.
|
||||
virtual void setAngleEpsilon(double angleEpsilon) = 0;
|
||||
virtual double getAngleEpsilon() const = 0;
|
||||
CV_WRAP virtual void setAngleEpsilon(double angleEpsilon) = 0;
|
||||
CV_WRAP virtual double getAngleEpsilon() const = 0;
|
||||
|
||||
//! Minimal rotation angle to detect in degrees.
|
||||
virtual void setMinAngle(double minAngle) = 0;
|
||||
virtual double getMinAngle() const = 0;
|
||||
CV_WRAP virtual void setMinAngle(double minAngle) = 0;
|
||||
CV_WRAP virtual double getMinAngle() const = 0;
|
||||
|
||||
//! Maximal rotation angle to detect in degrees.
|
||||
virtual void setMaxAngle(double maxAngle) = 0;
|
||||
virtual double getMaxAngle() const = 0;
|
||||
CV_WRAP virtual void setMaxAngle(double maxAngle) = 0;
|
||||
CV_WRAP virtual double getMaxAngle() const = 0;
|
||||
|
||||
//! Angle step in degrees.
|
||||
virtual void setAngleStep(double angleStep) = 0;
|
||||
virtual double getAngleStep() const = 0;
|
||||
CV_WRAP virtual void setAngleStep(double angleStep) = 0;
|
||||
CV_WRAP virtual double getAngleStep() const = 0;
|
||||
|
||||
//! Angle votes threshold.
|
||||
virtual void setAngleThresh(int angleThresh) = 0;
|
||||
virtual int getAngleThresh() const = 0;
|
||||
CV_WRAP virtual void setAngleThresh(int angleThresh) = 0;
|
||||
CV_WRAP virtual int getAngleThresh() const = 0;
|
||||
|
||||
//! Minimal scale to detect.
|
||||
virtual void setMinScale(double minScale) = 0;
|
||||
virtual double getMinScale() const = 0;
|
||||
CV_WRAP virtual void setMinScale(double minScale) = 0;
|
||||
CV_WRAP virtual double getMinScale() const = 0;
|
||||
|
||||
//! Maximal scale to detect.
|
||||
virtual void setMaxScale(double maxScale) = 0;
|
||||
virtual double getMaxScale() const = 0;
|
||||
CV_WRAP virtual void setMaxScale(double maxScale) = 0;
|
||||
CV_WRAP virtual double getMaxScale() const = 0;
|
||||
|
||||
//! Scale step.
|
||||
virtual void setScaleStep(double scaleStep) = 0;
|
||||
virtual double getScaleStep() const = 0;
|
||||
CV_WRAP virtual void setScaleStep(double scaleStep) = 0;
|
||||
CV_WRAP virtual double getScaleStep() const = 0;
|
||||
|
||||
//! Scale votes threshold.
|
||||
virtual void setScaleThresh(int scaleThresh) = 0;
|
||||
virtual int getScaleThresh() const = 0;
|
||||
CV_WRAP virtual void setScaleThresh(int scaleThresh) = 0;
|
||||
CV_WRAP virtual int getScaleThresh() const = 0;
|
||||
|
||||
//! Position votes threshold.
|
||||
virtual void setPosThresh(int posThresh) = 0;
|
||||
virtual int getPosThresh() const = 0;
|
||||
CV_WRAP virtual void setPosThresh(int posThresh) = 0;
|
||||
CV_WRAP virtual int getPosThresh() const = 0;
|
||||
};
|
||||
|
||||
//! @} imgproc_shape
|
||||
@@ -4175,11 +4175,11 @@ CV_EXPORTS_W int rotatedRectangleIntersection( const RotatedRect& rect1, const R
|
||||
|
||||
/** @brief Creates a smart pointer to a cv::GeneralizedHoughBallard class and initializes it.
|
||||
*/
|
||||
CV_EXPORTS Ptr<GeneralizedHoughBallard> createGeneralizedHoughBallard();
|
||||
CV_EXPORTS_W Ptr<GeneralizedHoughBallard> createGeneralizedHoughBallard();
|
||||
|
||||
/** @brief Creates a smart pointer to a cv::GeneralizedHoughGuil class and initializes it.
|
||||
*/
|
||||
CV_EXPORTS Ptr<GeneralizedHoughGuil> createGeneralizedHoughGuil();
|
||||
CV_EXPORTS_W Ptr<GeneralizedHoughGuil> createGeneralizedHoughGuil();
|
||||
|
||||
//! @} imgproc_shape
|
||||
|
||||
|
||||
Reference in New Issue
Block a user