Home | History | Annotate | Download | only in src

Lines Matching refs:threshold

99     CV_PROP_RW int threshold;
162 getAgastPoints(int threshold, std::vector<cv::KeyPoint>& keypoints);
166 getAgastScore(int x, int y, int threshold) const;
168 getAgastScore_5_8(int x, int y, int threshold) const;
170 getAgastScore(float xf, float yf, int threshold, float scale = 1.0f) const;
260 getScoreMaxAbove(const int layer, const int x_layer, const int y_layer, const int threshold, bool& ismax,
263 getScoreMaxBelow(const int layer, const int x_layer, const int y_layer, const int threshold, bool& ismax,
286 threshold = thresh;
318 threshold = 20;
822 briskScaleSpace.getKeypoints(threshold, keypoints);
1407 BriskScaleSpace::getScoreMaxAbove(const int layer, const int x_layer, const int y_layer, const int threshold,
1444 if (maxval > threshold)
1449 if (tmp_max > threshold)
1458 if (tmp_max > threshold)
1470 if (tmp_max > threshold)
1481 if (tmp_max > threshold)
1491 if (tmp_max > threshold)
1587 BriskScaleSpace::getScoreMaxBelow(const int layer, const int x_layer, const int y_layer, const int threshold,
1623 if (max > threshold)
1628 if (tmp_max > threshold)
1637 if (tmp_max > threshold)
1649 if (tmp_max > threshold)
1660 if (tmp_max > threshold)
1690 if (tmp_max > threshold)
2105 BriskLayer::getAgastPoints(int threshold, std::vector<KeyPoint>& keypoints)
2107 oast_9_16_->setThreshold(threshold);
2118 threshold) const
2129 score = (uchar)agast_cornerScore<AgastFeatureDetector::OAST_9_16>(&img_.at<uchar>(y, x), pixel_9_16_, threshold - 1);
2130 if (score < threshold)
2136 BriskLayer::getAgastScore_5_8(int x, int y, int threshold) const
2142 int score = agast_cornerScore<AgastFeatureDetector::AGAST_5_8>(&img_.at<uchar>(y, x), pixel_5_8_, threshold - 1);
2143 if (score < threshold)