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

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
plotJitterEstimate.m 3 [timestamps, framedata, slopes, randJitters, framestats, timetable, filtjitter, rtt, rttStatsVec] = jitterBufferTraceParser(filename);
9 plot(x, slopes(x, 1).*(framestats(x, 1) - framestats(x, 2)) + 3*sqrt(randJitters(x,2)), 'b'); title('Estimate ms');
11 plot(x, slopes(x, 1).*(framestats(x, 1) - framestats(x, 2)), 'g');
14 plot(x, slopes(x, 1)); title('Line slope');
16 %plot(x, slopes(x, 2)); title('Line offset');
32 plot(s, slopes(end, 1)*s + slopes(end, 2), 'g');
33 plot(s, slopes(end, 1)*s + slopes(end, 2) + 3*sqrt(randJitters(end,2)), 'r');
34 plot(s, slopes(end, 1)*s + slopes(end, 2) - 3*sqrt(randJitters(end,2)), 'r')
    [all...]
  /external/deqp/modules/glshared/
glsCalibration.cpp 136 std::vector<float> slopes; local
138 slopes.reserve(numDataPoints);
145 slopes.push_back((ptA.y() - ptB.y()) / (ptA.x() - ptB.x()));
148 // Add median of slopes through point i
149 medianSlopes.push_back(destructiveMedian(slopes));

Completed in 201 milliseconds