Home
last modified time | relevance | path

Searched refs:detector_ (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddelay_manager_unittest.cc42 MockDelayPeakDetector detector_; member in webrtc::DelayManagerTest
54 EXPECT_CALL(detector_, Reset()) in SetUp()
56 dm_ = new DelayManager(kMaxNumberOfPackets, &detector_); in SetUp()
60 EXPECT_CALL(detector_, SetPacketAudioLength(lengt_ms)); in SetPacketAudioLength()
72 EXPECT_CALL(detector_, IncrementCounter(kTimeStepMs)) in IncreaseTime()
78 EXPECT_CALL(detector_, Die()); in TearDown()
101 EXPECT_CALL(detector_, SetPacketAudioLength(kLengthMs)) in TEST_F()
111 EXPECT_CALL(detector_, peak_found()) in TEST_F()
120 EXPECT_CALL(detector_, IncrementCounter(kTimeStepMs)) in TEST_F()
135 EXPECT_CALL(detector_, Update(1, 1)) in TEST_F()
[all …]
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
DRobustMatcher.h22 detector_ = cv::ORB::create(); in RobustMatcher()
32 void setFeatureDetector(const cv::Ptr<cv::FeatureDetector>& detect) { detector_ = detect; } in setFeatureDetector()
72 cv::Ptr<cv::FeatureDetector> detector_;
DRobustMatcher.cpp20 detector_->detect(image, keypoints); in computeKeyPoints()
/external/opencv3/modules/videostab/include/opencv2/videostab/
Dglobal_motion.hpp229 void setDetector(Ptr<FeatureDetector> val) { detector_ = val; } in setDetector()
230 Ptr<FeatureDetector> detector() const { return detector_; } in detector()
242 Ptr<FeatureDetector> detector_; member in cv::videostab::KeypointBasedMotionEstimator
270 Ptr<cuda::CornersDetector> detector_; member in cv::videostab::KeypointBasedMotionEstimatorGpu
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dremote_bitrate_estimator_abs_send_time.cc110 detector_(OverUseDetectorOptions()), in RemoteBitrateEstimatorAbsSendTime()
270 const BandwidthUsage prior_state = detector_.State(); in IncomingPacketInfo()
310 estimator_.Update(t_delta, ts_delta_ms, size_delta, detector_.State()); in IncomingPacketInfo()
311 detector_.Detect(estimator_.offset(), ts_delta_ms, in IncomingPacketInfo()
315 if (detector_.State() == kBwOverusing) { in IncomingPacketInfo()
370 const RateControlInput input(detector_.State(), in UpdateEstimate()
Dremote_bitrate_estimator_abs_send_time.h136 OveruseDetector detector_ GUARDED_BY(crit_sect_.get());
/external/webrtc/webrtc/modules/audio_processing/transient/
Dtransient_suppressor.cc101 detector_.reset(new TransientDetector(detection_rate_hz)); in Initialize()
193 float detector_result = detector_->Detect( in Suppress()
199 using_reference_ = detector_->using_reference(); in Suppress()
Dtransient_suppressor.h74 rtc::scoped_ptr<TransientDetector> detector_; variable
/external/opencv3/modules/cudaobjdetect/src/
Dhog.cpp178 GpuMat detector_; member in __anon78effd4c0111::HOG_Impl
269 detector_.upload(Mat(detector_reordered).reshape(1, 1)); in setSVMDetector()
294 if (detector_.empty()) in detect()
313 detector_.ptr<float>(), in detect()
339 detector_.ptr<float>(), in detect()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp113 Ptr<FeatureDetector> detector_; member in cv::detail::SurfFeaturesFinder
/external/opencv3/modules/videostab/src/
Dglobal_motion.cpp711 detector_->detect(frame0, keypointsPrev_); in estimate()
772 detector_ = cuda::createGoodFeaturesToTrackDetector(CV_8UC1); in KeypointBasedMotionEstimatorGpu()
801 detector_->detect(grayFrame0, pointsPrev_); in estimate()
/external/opencv3/modules/stitching/src/
Dmatchers.cpp348 detector_ = sdetector_; in SurfFeaturesFinder()
375 detector_->detect(gray_image, features.keypoints); in find()