moved documentation of BriefDescriptorExtractor to correct place
authorMatthias Bady <aegirxx@gmail.com>
Fri, 20 Dec 2013 09:56:27 +0000 (10:56 +0100)
committerMatthias Bady <aegirxx@gmail.com>
Fri, 20 Dec 2013 09:57:48 +0000 (10:57 +0100)
modules/features2d/doc/common_interfaces_of_descriptor_extractors.rst
modules/features2d/doc/feature_detection_and_description.rst

index bf84ed0..637e476 100644 (file)
@@ -119,35 +119,3 @@ them into a single color descriptor. ::
     protected:
         ...
     };
-
-
-
-BriefDescriptorExtractor
-------------------------
-.. ocv:class:: BriefDescriptorExtractor : public DescriptorExtractor
-
-Class for computing BRIEF descriptors described in a paper of Calonder M., Lepetit V.,
-Strecha C., Fua P. *BRIEF: Binary Robust Independent Elementary Features* ,
-11th European Conference on Computer Vision (ECCV), Heraklion, Crete. LNCS Springer, September 2010. ::
-
-    class BriefDescriptorExtractor : public DescriptorExtractor
-    {
-    public:
-        static const int PATCH_SIZE = 48;
-        static const int KERNEL_SIZE = 9;
-
-        // bytes is a length of descriptor in bytes. It can be equal 16, 32 or 64 bytes.
-        BriefDescriptorExtractor( int bytes = 32 );
-
-        virtual void read( const FileNode& );
-        virtual void write( FileStorage& ) const;
-        virtual int descriptorSize() const;
-        virtual int descriptorType() const;
-        virtual int defaultNorm() const;
-    protected:
-        ...
-    };
-
-.. note::
-
-   * A complete BRIEF extractor sample can be found at opencv_source_code/samples/cpp/brief_match_test.cpp
index a6fe7c8..0226347 100644 (file)
@@ -37,6 +37,37 @@ Detects corners using the FAST algorithm by [Rosten06]_.
 .. [Rosten06] E. Rosten. Machine Learning for High-speed Corner Detection, 2006.
 
 
+BriefDescriptorExtractor
+------------------------
+.. ocv:class:: BriefDescriptorExtractor : public DescriptorExtractor
+
+Class for computing BRIEF descriptors described in a paper of Calonder M., Lepetit V.,
+Strecha C., Fua P. *BRIEF: Binary Robust Independent Elementary Features* ,
+11th European Conference on Computer Vision (ECCV), Heraklion, Crete. LNCS Springer, September 2010. ::
+
+    class BriefDescriptorExtractor : public DescriptorExtractor
+    {
+    public:
+        static const int PATCH_SIZE = 48;
+        static const int KERNEL_SIZE = 9;
+
+        // bytes is a length of descriptor in bytes. It can be equal 16, 32 or 64 bytes.
+        BriefDescriptorExtractor( int bytes = 32 );
+
+        virtual void read( const FileNode& );
+        virtual void write( FileStorage& ) const;
+        virtual int descriptorSize() const;
+        virtual int descriptorType() const;
+        virtual int defaultNorm() const;
+    protected:
+        ...
+    };
+
+.. note::
+
+   * A complete BRIEF extractor sample can be found at opencv_source_code/samples/cpp/brief_match_test.cpp
+
+
 MSER
 ----
 .. ocv:class:: MSER : public FeatureDetector