HomeSort by relevance Sort by last modified time
    Searched refs:threshold_ (Results 1 - 15 of 15) sorted by null

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
overuse_detector.cc 61 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_, kMinThreshold), kMaxThreshold)
    [all...]
overuse_detector.h 55 double threshold_; member in class:webrtc::OveruseDetector
  /external/opencv3/modules/cudaimgproc/src/
hough_lines.cpp 74 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/
fast.cpp 75 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/
kaze.cpp 78 void setThreshold(double threshold_) { threshold = (float)threshold_; }
akaze.cpp 89 void setThreshold(double threshold_) { threshold = (float)threshold_; }
fast.cpp 410 void setThreshold(int threshold_) { threshold = threshold_; }
brisk.cpp 864 BriskScaleSpace::getKeypoints(const int threshold_, std::vector<cv::KeyPoint>& keypoints)
871 int safeThreshold_ = (int)(threshold_ * safetyFactor_);
975 if (score > float(threshold_))
    [all...]
agast.cpp     [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Image.h 645 void blackThreshold(const std::string &threshold_);
647 const std::string &threshold_);
826 // completely flat when scanned. The value of threshold_ ranges from 0
828 void deskew(const double threshold_);
    [all...]
STL.h 1168 thresholdImage( const double threshold_ );
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp 4576 BilevelImage(image(),threshold_,exceptionInfo); local
    [all...]
STL.cpp 1073 Magick::thresholdImage::thresholdImage( const double threshold_ )
1074 : _threshold( threshold_ )
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 2280 int threshold_; member in class:testing::gmock_matchers_test::IsGreaterThan
    [all...]
  /external/gmock/test/
gmock-matchers_test.cc 2389 int threshold_; member in class:testing::gmock_matchers_test::IsGreaterThan
    [all...]

Completed in 1386 milliseconds