Home
last modified time | relevance | path

Searched refs:estimator (Results 1 – 17 of 17) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dremote_bitrate_estimator_single_stream.cc40 estimator(options), in Detector()
44 OveruseEstimator estimator; member
92 Detector* estimator = it->second; in IncomingPacket() local
93 estimator->last_packet_time_ms = now_ms; in IncomingPacket()
95 const BandwidthUsage prior_state = estimator->detector.State(); in IncomingPacket()
99 if (estimator->inter_arrival.ComputeDeltas(rtp_timestamp, arrival_time_ms, in IncomingPacket()
103 estimator->estimator.Update(time_delta, timestamp_delta_ms, size_delta, in IncomingPacket()
104 estimator->detector.State()); in IncomingPacket()
105 estimator->detector.Detect(estimator->estimator.offset(), in IncomingPacket()
107 estimator->estimator.num_of_deltas(), now_ms); in IncomingPacket()
[all …]
/external/iptables/extensions/
Dlibxt_rateest.man1 The rate estimator can match on estimated rates as collected by the RATEEST
31 For each estimator (either absolute or relative mode), calculate the difference
32 between the estimator-determined flow rate and the static value chosen with the
38 Match if rate is less than given rate/estimator.
41 Match if rate is greater than given rate/estimator.
44 Match if rate is equal to given rate/estimator.
46 In the so-called "absolute mode", only one rate estimator is used and compared
51 Name of the one rate estimator for absolute mode.
69 Compare the estimator(s) by bytes or packets per second, and compare against
/external/webrtc/webrtc/modules/remote_bitrate_estimator/tools/
Dbwe_rtp.cc75 webrtc::RemoteBitrateEstimator** estimator, in ParseArgsAndSetupEstimator() argument
116 if (estimator) { in ParseArgsAndSetupEstimator()
119 *estimator = in ParseArgsAndSetupEstimator()
125 *estimator = in ParseArgsAndSetupEstimator()
Dbwe_rtp_play.cc42 webrtc::RemoteBitrateEstimator* estimator; in main() local
48 &parser, &estimator, &estimator_used)) { in main()
53 rtc::scoped_ptr<webrtc::RemoteBitrateEstimator> rbe(estimator); in main()
Dbwe_rtp.h33 webrtc::RemoteBitrateEstimator** estimator,
/external/opencv3/modules/videostab/include/opencv2/videostab/
Dglobal_motion.hpp206 ToFileMotionWriter(const String &path, Ptr<ImageMotionEstimatorBase> estimator);
224 KeypointBasedMotionEstimator(Ptr<MotionEstimatorBase> estimator);
257 KeypointBasedMotionEstimatorGpu(Ptr<MotionEstimatorBase> estimator);
/external/opencv3/modules/videostab/src/
Dglobal_motion.cpp679 ToFileMotionWriter::ToFileMotionWriter(const String &path, Ptr<ImageMotionEstimatorBase> estimator) in ToFileMotionWriter() argument
680 : ImageMotionEstimatorBase(estimator->motionModel()), motionEstimator_(estimator) in ToFileMotionWriter()
699 KeypointBasedMotionEstimator::KeypointBasedMotionEstimator(Ptr<MotionEstimatorBase> estimator) in KeypointBasedMotionEstimator() argument
700 : ImageMotionEstimatorBase(estimator->motionModel()), motionEstimator_(estimator) in KeypointBasedMotionEstimator()
769 KeypointBasedMotionEstimatorGpu::KeypointBasedMotionEstimatorGpu(Ptr<MotionEstimatorBase> estimator) in KeypointBasedMotionEstimatorGpu() argument
770 : ImageMotionEstimatorBase(estimator->motionModel()), motionEstimator_(estimator) in KeypointBasedMotionEstimatorGpu()
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dpacket_sender.h70 BandwidthEstimatorType estimator);
107 BandwidthEstimatorType estimator);
Dbwe.cc85 BweSender* CreateBweSender(BandwidthEstimatorType estimator, in CreateBweSender() argument
89 switch (estimator) { in CreateBweSender()
Dbwe.h186 BweSender* CreateBweSender(BandwidthEstimatorType estimator,
Dpacket_sender.cc158 BandwidthEstimatorType estimator) in PacedVideoSender() argument
159 : VideoSender(listener, source, estimator), in PacedVideoSender()
/external/opencv/cv/src/
Dcvfundam.cpp616 CvHomographyEstimator estimator( MIN(count, 5) ); in cvFindHomography() local
620 result = estimator.runLMeDS( M, m, &_H, tempMask, confidence ); in cvFindHomography()
622 result = estimator.runRANSAC( M, m, &_H, tempMask, ransacReprojThreshold, confidence ); in cvFindHomography()
624 result = estimator.runKernel( M, m, &_H ) > 0; in cvFindHomography()
631 estimator.refine( M, m, &_H, 10 ); in cvFindHomography()
988 CvFMEstimator estimator( MIN(count, (method & 3) == CV_FM_7POINT ? 7 : 8) ); in cvFindFundamentalMat() local
990 result = estimator.run7Point(m1, m2, &_F9x3); in cvFindFundamentalMat()
992 result = estimator.run8Point(m1, m2, &_F3x3); in cvFindFundamentalMat()
1001 result = estimator.runRANSAC(m1, m2, &_F3x3, tempMask, param1, param2 ); in cvFindFundamentalMat()
1003 result = estimator.runLMeDS(m1, m2, &_F3x3, tempMask, param2 ); in cvFindFundamentalMat()
[all …]
/external/deqp/modules/gles2/performance/
Des2pShaderOperatorTests.cpp423 const gls::LineParameters estimator = simpleLinearRegression(data); in simpleLinearRegressionError() local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x(); in simpleLinearRegressionError()
950 const SegmentedEstimator& estimator = estimators[progNdx]; in iterate() local
985 …tEstimate", "Workload cost estimate", "us / workload", QP_KEY_TAG_TIME, estimator.right.coefficien… in iterate()
987 if (estimator.pivotX > -std::numeric_limits<float>::infinity()) in iterate()
988 …:Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX in iterate()
990 …< TestLog::Message << "Note: the left line is estimated to be " << lineParamsString(estimator.left) in iterate()
991 << " and the right line " << lineParamsString(estimator.right) << TestLog::EndMessage; in iterate()
993 …ge << "Note: the data seem to form a single line: " << lineParamsString(estimator.right) << TestLo… in iterate()
/external/deqp/modules/gles3/performance/
Des3pShaderOperatorTests.cpp423 const gls::LineParameters estimator = simpleLinearRegression(data); in simpleLinearRegressionError() local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x(); in simpleLinearRegressionError()
950 const SegmentedEstimator& estimator = estimators[progNdx]; in iterate() local
985 …tEstimate", "Workload cost estimate", "us / workload", QP_KEY_TAG_TIME, estimator.right.coefficien… in iterate()
987 if (estimator.pivotX > -std::numeric_limits<float>::infinity()) in iterate()
988 …:Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX in iterate()
990 …< TestLog::Message << "Note: the left line is estimated to be " << lineParamsString(estimator.left) in iterate()
991 << " and the right line " << lineParamsString(estimator.right) << TestLog::EndMessage; in iterate()
993 …ge << "Note: the data seem to form a single line: " << lineParamsString(estimator.right) << TestLo… in iterate()
/external/opencv3/modules/stitching/src/
Dstitcher.cpp491 detail::HomographyBasedEstimator estimator; in estimateCameraParams() local
492 if (!estimator(features_, pairwise_matches_, cameras_)) in estimateCameraParams()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp508 HomographyBasedEstimator estimator; in main() local
510 if (!estimator(features, pairwise_matches, cameras)) in main()
/external/webrtc/webrtc/build/
Dcommon.gypi73 # Remote bitrate estimator logging/plotting.