Searched refs:threshold_ (Results 1 - 11 of 11) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Doveruse_detector.cc61 threshold_(12.5),
88 BWE_TEST_LOGGING_PLOT(1, "threshold", now_ms, threshold_);
89 if (T > threshold_) {
107 } else if (T < -threshold_) {
129 if (fabs(modified_offset) > threshold_ + kMaxAdaptOffsetMs) {
136 const double k = fabs(modified_offset) < threshold_ ? k_down_ : k_up_;
137 threshold_ +=
138 k * (fabs(modified_offset) - threshold_) * (now_ms - last_update_ms_);
142 threshold_ = std::min(std::max(threshold_, kMinThreshol
[all...]
H A Doveruse_detector.h55 double threshold_; member in class:webrtc::OveruseDetector
/external/opencv3/modules/cudaimgproc/src/
H A Dhough_lines.cpp74 rho_(rho), theta_(theta), threshold_(threshold), doSort_(doSort), maxLines_(maxLines)
87 void setThreshold(int threshold) { threshold_ = threshold; }
88 int getThreshold() const { return threshold_; }
101 << "threshold" << threshold_
111 threshold_ = (int)fn["threshold"];
119 int threshold_;
164 int linesCount = linesGetResult_gpu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_, rho_, theta_, threshold_, doSort_);
/external/opencv3/modules/cudafeatures2d/src/
H A Dfast.cpp75 virtual void setThreshold(int threshold) { threshold_ = threshold; }
76 virtual int getThreshold() const { return threshold_; }
88 int threshold_;
94 threshold_(threshold), nonmaxSuppression_(nonmaxSuppression), max_npoints_(max_npoints)
134 int count = calcKeypoints_gpu(img, mask, kpLoc.ptr<short2>(), max_npoints_, score, threshold_, StreamAccessor::getStream(stream));
/external/opencv3/modules/features2d/src/
H A Dkaze.cpp78 void setThreshold(double threshold_) { threshold = (float)threshold_; } argument
H A Dakaze.cpp89 void setThreshold(double threshold_) { threshold = (float)threshold_; } argument
H A Dfast.cpp410 void setThreshold(int threshold_) { threshold = threshold_; } argument
H A Dbrisk.cpp864 BriskScaleSpace::getKeypoints(const int threshold_, std::vector<cv::KeyPoint>& keypoints)
871 int safeThreshold_ = (int)(threshold_ * safetyFactor_);
975 if (score > float(threshold_))
H A Dagast.cpp7493 void setThreshold(int threshold_) { threshold = threshold_; } argument
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc2275 explicit IsGreaterThan(int threshold) : threshold_(threshold) {}
2277 bool operator()(int n) const { return n > threshold_; }
2280 int threshold_; member in class:testing::gmock_matchers_test::IsGreaterThan
/external/gmock/test/
H A Dgmock-matchers_test.cc2384 explicit IsGreaterThan(int threshold) : threshold_(threshold) {}
2386 bool operator()(int n) const { return n > threshold_; }
2389 int threshold_; member in class:testing::gmock_matchers_test::IsGreaterThan

Completed in 262 milliseconds