|
|
@ -169,6 +169,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
CV_WRAP virtual int descriptorSize() const = 0; |
|
|
|
CV_WRAP virtual int descriptorSize() const = 0; |
|
|
|
CV_WRAP virtual int descriptorType() const = 0; |
|
|
|
CV_WRAP virtual int descriptorType() const = 0; |
|
|
|
|
|
|
|
CV_WRAP virtual int defaultNorm() const = 0; |
|
|
|
|
|
|
|
|
|
|
|
CV_WRAP virtual bool empty() const; |
|
|
|
CV_WRAP virtual bool empty() const; |
|
|
|
|
|
|
|
|
|
|
@ -226,6 +227,8 @@ public: |
|
|
|
int descriptorSize() const; |
|
|
|
int descriptorSize() const; |
|
|
|
// returns the descriptor type
|
|
|
|
// returns the descriptor type
|
|
|
|
int descriptorType() const; |
|
|
|
int descriptorType() const; |
|
|
|
|
|
|
|
// returns the default norm type
|
|
|
|
|
|
|
|
int defaultNorm() const; |
|
|
|
|
|
|
|
|
|
|
|
// Compute the BRISK features on an image
|
|
|
|
// Compute the BRISK features on an image
|
|
|
|
void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints) const; |
|
|
|
void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints) const; |
|
|
@ -320,6 +323,8 @@ public: |
|
|
|
int descriptorSize() const; |
|
|
|
int descriptorSize() const; |
|
|
|
// returns the descriptor type
|
|
|
|
// returns the descriptor type
|
|
|
|
int descriptorType() const; |
|
|
|
int descriptorType() const; |
|
|
|
|
|
|
|
// returns the default norm type
|
|
|
|
|
|
|
|
int defaultNorm() const; |
|
|
|
|
|
|
|
|
|
|
|
// Compute the ORB features and descriptors on an image
|
|
|
|
// Compute the ORB features and descriptors on an image
|
|
|
|
void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints) const; |
|
|
|
void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints) const; |
|
|
@ -377,6 +382,9 @@ public: |
|
|
|
/** returns the descriptor type */ |
|
|
|
/** returns the descriptor type */ |
|
|
|
virtual int descriptorType() const; |
|
|
|
virtual int descriptorType() const; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** returns the default norm type */ |
|
|
|
|
|
|
|
virtual int defaultNorm() const; |
|
|
|
|
|
|
|
|
|
|
|
/** select the 512 "best description pairs"
|
|
|
|
/** select the 512 "best description pairs"
|
|
|
|
* @param images grayscale images set |
|
|
|
* @param images grayscale images set |
|
|
|
* @param keypoints set of detected keypoints |
|
|
|
* @param keypoints set of detected keypoints |
|
|
@ -837,6 +845,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
virtual int descriptorSize() const; |
|
|
|
virtual int descriptorSize() const; |
|
|
|
virtual int descriptorType() const; |
|
|
|
virtual int descriptorType() const; |
|
|
|
|
|
|
|
virtual int defaultNorm() const; |
|
|
|
|
|
|
|
|
|
|
|
virtual bool empty() const; |
|
|
|
virtual bool empty() const; |
|
|
|
|
|
|
|
|
|
|
@ -863,6 +872,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
virtual int descriptorSize() const; |
|
|
|
virtual int descriptorSize() const; |
|
|
|
virtual int descriptorType() const; |
|
|
|
virtual int descriptorType() const; |
|
|
|
|
|
|
|
virtual int defaultNorm() const; |
|
|
|
|
|
|
|
|
|
|
|
/// @todo read and write for brief
|
|
|
|
/// @todo read and write for brief
|
|
|
|
|
|
|
|
|
|
|
|