FEATURES2D: add DenseFeatureDetector Python wrapper
authorClemens Korner <clemens.corny@gmail.com>
Thu, 13 Mar 2014 14:00:18 +0000 (15:00 +0100)
committerClemens Korner <clemens.corny@gmail.com>
Tue, 25 Mar 2014 11:07:01 +0000 (12:07 +0100)
modules/features2d/include/opencv2/features2d.hpp

index 1589d59..455257a 100644 (file)
@@ -616,14 +616,14 @@ protected:
 };
 
 
-class CV_EXPORTS DenseFeatureDetector : public FeatureDetector
+class CV_EXPORTS_W DenseFeatureDetector : public FeatureDetector
 {
 public:
-    explicit DenseFeatureDetector( float initFeatureScale=1.f, int featureScaleLevels=1,
-                                   float featureScaleMul=0.1f,
-                                   int initXyStep=6, int initImgBound=0,
-                                   bool varyXyStepWithScale=true,
-                                   bool varyImgBoundWithScale=false );
+    CV_WRAP explicit DenseFeatureDetector( float initFeatureScale=1.f, int featureScaleLevels=1,
+                                           float featureScaleMul=0.1f,
+                                           int initXyStep=6, int initImgBound=0,
+                                           bool varyXyStepWithScale=true,
+                                           bool varyImgBoundWithScale=false );
     AlgorithmInfo* info() const;
 
 protected: