Home
last modified time | relevance | path

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

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