Class implementing the KAZE keypoint detector and descriptor extractor, described in [2] .
More...
#include "features2d.hpp"
|
virtual void | clear () |
| Clears the algorithm state. More...
|
|
virtual void | compute (InputArray image, std::vector< KeyPoint > &keypoints, OutputArray descriptors) |
| Computes the descriptors for a set of keypoints detected in an image (first variant) or image set (second variant). More...
|
|
virtual void | compute (InputArrayOfArrays images, std::vector< std::vector< KeyPoint > > &keypoints, OutputArrayOfArrays descriptors) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
virtual int | defaultNorm () const |
|
virtual int | descriptorSize () const |
|
virtual int | descriptorType () const |
|
virtual void | detect (InputArray image, std::vector< KeyPoint > &keypoints, InputArray mask=noArray()) |
| Detects keypoints in an image (first variant) or image set (second variant). More...
|
|
virtual void | detect (InputArrayOfArrays images, std::vector< std::vector< KeyPoint > > &keypoints, InputArrayOfArrays masks=noArray()) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
virtual void | detectAndCompute (InputArray image, InputArray mask, std::vector< KeyPoint > &keypoints, OutputArray descriptors, bool useProvidedKeypoints=false) |
| Detects keypoints and computes the descriptors. More...
|
|
virtual bool | empty () const |
| Return true if detector object is empty. More...
|
|
virtual String | getDefaultName () const |
| Returns the algorithm string identifier. More...
|
|
virtual int | getDiffusivity () const =0 |
|
virtual bool | getExtended () const =0 |
|
virtual int | getNOctaveLayers () const =0 |
|
virtual int | getNOctaves () const =0 |
|
virtual double | getThreshold () const =0 |
|
virtual bool | getUpright () const =0 |
|
void | read (const String &fileName) |
|
virtual void | read (const FileNode &) |
| Reads algorithm parameters from a file storage. More...
|
|
virtual void | save (const String &filename) const |
| Saves the algorithm to a file. More...
|
|
virtual void | setDiffusivity (int diff)=0 |
|
virtual void | setExtended (bool extended)=0 |
|
virtual void | setNOctaveLayers (int octaveLayers)=0 |
|
virtual void | setNOctaves (int octaves)=0 |
|
virtual void | setThreshold (double threshold)=0 |
|
virtual void | setUpright (bool upright)=0 |
|
void | write (const String &fileName) const |
|
virtual void | write (FileStorage &) const |
| Stores algorithm parameters in a file storage. More...
|
|
Class implementing the KAZE keypoint detector and descriptor extractor, described in [2] .
- Note
- AKAZE descriptor can only be used with KAZE or AKAZE keypoints .. [ABD12] KAZE Features. Pablo F. Alcantarilla, Adrien Bartoli and Andrew J. Davison. In European Conference on Computer Vision (ECCV), Fiorenze, Italy, October 2012.
Enumerator |
---|
DIFF_PM_G1 |
|
DIFF_PM_G2 |
|
DIFF_WEICKERT |
|
DIFF_CHARBONNIER |
|
virtual void cv::Algorithm::clear |
( |
| ) |
|
|
inlinevirtualinherited |
Computes the descriptors for a set of keypoints detected in an image (first variant) or image set (second variant).
- Parameters
-
image | Image. |
keypoints | Input collection of keypoints. Keypoints for which a descriptor cannot be computed are removed. Sometimes new keypoints can be added, for example: SIFT duplicates keypoint with several dominant orientations (for each orientation). |
descriptors | Computed descriptors. In the second variant of the method descriptors[i] are descriptors computed for a keypoints[i]. Row j is the keypoints (or keypoints[i]) is the descriptor for keypoint j-th keypoint. |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
- Parameters
-
images | Image set. |
keypoints | Input collection of keypoints. Keypoints for which a descriptor cannot be computed are removed. Sometimes new keypoints can be added, for example: SIFT duplicates keypoint with several dominant orientations (for each orientation). |
descriptors | Computed descriptors. In the second variant of the method descriptors[i] are descriptors computed for a keypoints[i]. Row j is the keypoints (or keypoints[i]) is the descriptor for keypoint j-th keypoint. |
static Ptr<KAZE> cv::KAZE::create |
( |
bool |
extended = false , |
|
|
bool |
upright = false , |
|
|
float |
threshold = 0.001f , |
|
|
int |
nOctaves = 4 , |
|
|
int |
nOctaveLayers = 4 , |
|
|
int |
diffusivity = KAZE::DIFF_PM_G2 |
|
) |
| |
|
static |
The KAZE constructor.
- Parameters
-
extended | Set to enable extraction of extended (128-byte) descriptor. |
upright | Set to enable use of upright descriptors (non rotation-invariant). |
threshold | Detector response threshold to accept point |
nOctaves | Maximum octave evolution of the image |
nOctaveLayers | Default number of sublevels per scale level |
diffusivity | Diffusivity type. DIFF_PM_G1, DIFF_PM_G2, DIFF_WEICKERT or DIFF_CHARBONNIER |
virtual int cv::Feature2D::defaultNorm |
( |
| ) |
const |
|
virtualinherited |
virtual int cv::Feature2D::descriptorSize |
( |
| ) |
const |
|
virtualinherited |
virtual int cv::Feature2D::descriptorType |
( |
| ) |
const |
|
virtualinherited |
Detects keypoints in an image (first variant) or image set (second variant).
- Parameters
-
image | Image. |
keypoints | The detected keypoints. In the second variant of the method keypoints[i] is a set of keypoints detected in images[i] . |
mask | Mask specifying where to look for keypoints (optional). It must be a 8-bit integer matrix with non-zero values in the region of interest. |
Reimplemented in cv::AgastFeatureDetector_Impl.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
- Parameters
-
images | Image set. |
keypoints | The detected keypoints. In the second variant of the method keypoints[i] is a set of keypoints detected in images[i] . |
masks | Masks for each input image specifying where to look for keypoints (optional). masks[i] is a mask for images[i]. |
Detects keypoints and computes the descriptors.
virtual bool cv::Feature2D::empty |
( |
| ) |
const |
|
virtualinherited |
Return true if detector object is empty.
Reimplemented from cv::Algorithm.
virtual String cv::Algorithm::getDefaultName |
( |
| ) |
const |
|
virtualinherited |
Returns the algorithm string identifier.
This string is used as top level xml/yml node tag when the object is saved to a file or string.
virtual int cv::KAZE::getDiffusivity |
( |
| ) |
const |
|
pure virtual |
virtual bool cv::KAZE::getExtended |
( |
| ) |
const |
|
pure virtual |
virtual int cv::KAZE::getNOctaveLayers |
( |
| ) |
const |
|
pure virtual |
virtual int cv::KAZE::getNOctaves |
( |
| ) |
const |
|
pure virtual |
virtual double cv::KAZE::getThreshold |
( |
| ) |
const |
|
pure virtual |
virtual bool cv::KAZE::getUpright |
( |
| ) |
const |
|
pure virtual |
template<typename _Tp >
static Ptr<_Tp> cv::Algorithm::loadFromString |
( |
const String & |
strModel, |
|
|
const String & |
objname = String() |
|
) |
| |
|
inlinestaticinherited |
void cv::Feature2D::read |
( |
const String & |
fileName | ) |
|
|
inherited |
virtual void cv::Feature2D::read |
( |
const FileNode & |
fn | ) |
|
|
virtualinherited |
Reads algorithm parameters from a file storage.
Reimplemented from cv::Algorithm.
virtual void cv::Algorithm::save |
( |
const String & |
filename | ) |
const |
|
virtualinherited |
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
virtual void cv::KAZE::setDiffusivity |
( |
int |
diff | ) |
|
|
pure virtual |
virtual void cv::KAZE::setExtended |
( |
bool |
extended | ) |
|
|
pure virtual |
virtual void cv::KAZE::setNOctaveLayers |
( |
int |
octaveLayers | ) |
|
|
pure virtual |
virtual void cv::KAZE::setNOctaves |
( |
int |
octaves | ) |
|
|
pure virtual |
virtual void cv::KAZE::setThreshold |
( |
double |
threshold | ) |
|
|
pure virtual |
virtual void cv::KAZE::setUpright |
( |
bool |
upright | ) |
|
|
pure virtual |
void cv::Feature2D::write |
( |
const String & |
fileName | ) |
const |
|
inherited |
virtual void cv::Feature2D::write |
( |
FileStorage & |
fs | ) |
const |
|
virtualinherited |
Stores algorithm parameters in a file storage.
Reimplemented from cv::Algorithm.
void cv::Algorithm::writeFormat |
( |
FileStorage & |
fs | ) |
const |
|
protectedinherited |
The documentation for this class was generated from the following file:
- features2d/include/opencv2/features2d.hpp