OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_theta
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/video_coding/
jitter_estimator.cc
84
_theta
[0] = 1 / (512e3 / 8);
85
_theta
[1] = 0;
256
measureRes = frameDelayMS - (deltaFSBytes *
_theta
[0] +
_theta
[1]);
257
_theta
[0] += kalmanGain[0] * measureRes;
258
_theta
[1] += kalmanGain[1] * measureRes;
260
if (
_theta
[0] < _thetaLow) {
261
_theta
[0] = _thetaLow;
289
return frameDelayMS - (
_theta
[0] * deltaFSBytes +
_theta
[1])
[
all
...]
jitter_estimator.h
73
double
_theta
[2]; // Estimated line parameters (slope, offset)
member in class:webrtc::VCMJitterEstimator
/external/opencv3/modules/imgproc/src/
hough.cpp
189
hough_index(int _val, float _rho, float
_theta
)
190
: value(_val), rho(_rho), theta(
_theta
) {}
[
all
...]
Completed in 162 milliseconds