mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
moved documentation of BriefDescriptorExtractor to correct place
This commit is contained in:
parent
6e4715309b
commit
9b0a9f2a24
@ -119,35 +119,3 @@ them into a single color descriptor. ::
|
|||||||
protected:
|
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
|
|
||||||
|
@ -37,6 +37,37 @@ Detects corners using the FAST algorithm by [Rosten06]_.
|
|||||||
.. [Rosten06] E. Rosten. Machine Learning for High-speed Corner Detection, 2006.
|
.. [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
|
MSER
|
||||||
----
|
----
|
||||||
.. ocv:class:: MSER : public FeatureDetector
|
.. ocv:class:: MSER : public FeatureDetector
|
||||||
|
Loading…
Reference in New Issue
Block a user