Commit 36db9706 authored by Ievgen Khvedchenia's avatar Ievgen Khvedchenia

Added missing operator()

parent 6d500cc6
...@@ -906,10 +906,12 @@ public: ...@@ -906,10 +906,12 @@ public:
AlgorithmInfo* info() const; AlgorithmInfo* info() const;
void operator()(InputArray image, InputArray mask, // Compute the KAZE features on an image
std::vector<KeyPoint>& keypoints, void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints) const;
OutputArray descriptors,
bool useProvidedKeypoints) const; // Compute the KAZE features and descriptors on an image
void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints,
OutputArray descriptors, bool useProvidedKeypoints = false) const;
protected: protected:
void detectImpl(InputArray image, std::vector<KeyPoint>& keypoints, InputArray mask) const; void detectImpl(InputArray image, std::vector<KeyPoint>& keypoints, InputArray mask) const;
...@@ -938,7 +940,7 @@ public: ...@@ -938,7 +940,7 @@ public:
// Compute the AKAZE features on an image // Compute the AKAZE 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;
// Compute the BRISK features and descriptors on an image // Compute the AKAZE features and descriptors on an image
void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints, void operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints,
OutputArray descriptors, bool useProvidedKeypoints = false) const; OutputArray descriptors, bool useProvidedKeypoints = false) const;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment