Commit 82227b5a authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #13419 from seanm:SemiWarnings

parents c8f934b5 a4111fab
......@@ -289,14 +289,14 @@ public:
/** @brief Set detection threshold.
@param threshold AGAST detection threshold score.
*/
CV_WRAP virtual void setThreshold(int threshold) { CV_UNUSED(threshold); return; };
CV_WRAP virtual int getThreshold() const { return -1; };
CV_WRAP virtual void setThreshold(int threshold) { CV_UNUSED(threshold); return; }
CV_WRAP virtual int getThreshold() const { return -1; }
/** @brief Set detection octaves.
@param octaves detection octaves. Use 0 to do single scale.
*/
CV_WRAP virtual void setOctaves(int octaves) { CV_UNUSED(octaves); return; };
CV_WRAP virtual int getOctaves() const { return -1; };
CV_WRAP virtual void setOctaves(int octaves) { CV_UNUSED(octaves); return; }
CV_WRAP virtual int getOctaves() const { return -1; }
};
/** @brief Class implementing the ORB (*oriented BRIEF*) keypoint detector and descriptor extractor
......
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