Commit f1c8b4b9 authored by Clemens Korner's avatar Clemens Korner

FEATURES2D: add DenseFeatureDetector Python wrapper

parent 70e22b68
...@@ -616,14 +616,14 @@ protected: ...@@ -616,14 +616,14 @@ protected:
}; };
class CV_EXPORTS DenseFeatureDetector : public FeatureDetector class CV_EXPORTS_W DenseFeatureDetector : public FeatureDetector
{ {
public: public:
explicit DenseFeatureDetector( float initFeatureScale=1.f, int featureScaleLevels=1, CV_WRAP explicit DenseFeatureDetector( float initFeatureScale=1.f, int featureScaleLevels=1,
float featureScaleMul=0.1f, float featureScaleMul=0.1f,
int initXyStep=6, int initImgBound=0, int initXyStep=6, int initImgBound=0,
bool varyXyStepWithScale=true, bool varyXyStepWithScale=true,
bool varyImgBoundWithScale=false ); bool varyImgBoundWithScale=false );
AlgorithmInfo* info() const; AlgorithmInfo* info() const;
protected: protected:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment