Fix binary compatibility of opencv_features2d
This commit is contained in:
@@ -566,19 +566,19 @@ protected:
|
||||
CV_EXPORTS void FAST( InputArray image, CV_OUT vector<KeyPoint>& keypoints,
|
||||
int threshold, bool nonmaxSupression=true );
|
||||
|
||||
CV_EXPORTS void FAST( InputArray image, CV_OUT vector<KeyPoint>& keypoints,
|
||||
CV_EXPORTS void FASTX( InputArray image, CV_OUT vector<KeyPoint>& keypoints,
|
||||
int threshold, bool nonmaxSupression, int type );
|
||||
|
||||
class CV_EXPORTS_W FastFeatureDetector : public FeatureDetector
|
||||
{
|
||||
public:
|
||||
|
||||
enum
|
||||
{
|
||||
{ // Define it in old class to simplify migration to 2.5
|
||||
TYPE_5_8 = 0, TYPE_7_12 = 1, TYPE_9_16 = 2
|
||||
};
|
||||
|
||||
CV_WRAP FastFeatureDetector( int threshold=10, bool nonmaxSuppression=true);
|
||||
CV_WRAP FastFeatureDetector( int threshold, bool nonmaxSuppression, int type);
|
||||
CV_WRAP FastFeatureDetector( int threshold=10, bool nonmaxSuppression=true );
|
||||
AlgorithmInfo* info() const;
|
||||
|
||||
protected:
|
||||
@@ -586,7 +586,6 @@ protected:
|
||||
|
||||
int threshold;
|
||||
bool nonmaxSuppression;
|
||||
short type;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user