mirror of
https://github.com/opencv/opencv.git
synced 2025-06-10 19:24:07 +08:00
forgot to commit in the last time
This commit is contained in:
parent
ae529f4bc6
commit
79d8d50cbe
@ -49,6 +49,11 @@ DynamicAdaptedFeatureDetector::DynamicAdaptedFeatureDetector(const Ptr<AdjusterA
|
|||||||
escape_iters_(max_iters), min_features_(min_features), max_features_(max_features), adjuster_(a)
|
escape_iters_(max_iters), min_features_(min_features), max_features_(max_features), adjuster_(a)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
bool DynamicAdaptedFeatureDetector::empty() const
|
||||||
|
{
|
||||||
|
return adjuster_.empty() || adjuster_->empty();
|
||||||
|
}
|
||||||
|
|
||||||
void DynamicAdaptedFeatureDetector::detectImpl(const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask) const
|
void DynamicAdaptedFeatureDetector::detectImpl(const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask) const
|
||||||
{
|
{
|
||||||
//for oscillation testing
|
//for oscillation testing
|
||||||
|
Loading…
Reference in New Issue
Block a user