forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
latency-detector.h
400 lines (333 loc) · 12 KB
/
latency-detector.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
// License: Apache 2.0. See LICENSE file in root directory.
// Copyright(c) 2017 Intel Corporation. All Rights Reserved.
#pragma once
#include <librealsense2/rs.hpp> // Include RealSense Cross Platform API
#include <librealsense2/h/rs_internal.h> // Access librealsense internal clock
#include <opencv2/opencv.hpp> // Include OpenCV API
#include "../cv-helpers.hpp" // Helper functions for conversions between RealSense and OpenCV
#include "../../../src/concurrency.h" // We are borrowing from librealsense concurrency infrastructure for this sample
#include <algorithm>
// Helper class to keep track of measured data
// and generate basic statistics
template<class T>
class measurement
{
public:
measurement(int cap = 10) : _capacity(cap), _sum() {}
// Media over rolling window
T median() const
{
std::lock_guard<std::mutex> lock(_m);
if (_total == 0) return _sum;
std::vector<T> copy(begin(_data), end(_data));
std::sort(begin(copy), end(copy));
return copy[copy.size() / 2];
}
// Average over all samples
T avg() const
{
std::lock_guard<std::mutex> lock(_m);
if (_total > 0) return _sum / _total;
return _sum;
}
// Total count of measurements
int total() const
{
std::lock_guard<std::mutex> lock(_m);
return _total;
}
// Add new measurement
void add(T val)
{
std::lock_guard<std::mutex> lock(_m);
_data.push_back(val);
if (_data.size() > _capacity)
{
_data.pop_front();
}
_total++;
_sum += val;
}
private:
mutable std::mutex _m;
T _sum;
std::deque<T> _data;
int _capacity;
int _total = 0;
};
// Helper class to encode / decode numbers into
// binary sequences, with 2-bit checksum
class bit_packer
{
public:
bit_packer(int digits)
: _digits(digits), _bits(digits, false)
{
}
void reset()
{
std::fill(_bits.begin(), _bits.end(), false);
}
// Try to reconstruct the number from bits inside the class
bool try_unpack(int* number)
{
// Calculate and verify Checksum
auto on_bits = std::count_if(_bits.begin() + 2, _bits.end(),
[](bool f) { return f; });
if ((on_bits % 2 == 1) == _bits[0] &&
((on_bits / 2) % 2 == 1) == _bits[1])
{
int res = 0;
for (int i = 2; i < _digits; i++)
{
res = res * 2 + _bits[i];
}
*number = res;
return true;
}
else return false;
}
// Try to store the number as bits into the class
bool try_pack(int number)
{
if (number < 1 << (_digits - 2))
{
_bits.clear();
while (number)
{
_bits.push_back(number & 1);
number >>= 1;
}
// Pad with zeros
while (_bits.size() < _digits) _bits.push_back(false);
reverse(_bits.begin(), _bits.end());
// Apply 2-bit Checksum
auto on_bits = std::count_if(_bits.begin() + 2, _bits.end(),
[](bool f) { return f; });
_bits[0] = (on_bits % 2 == 1);
_bits[1] = ((on_bits / 2) % 2 == 1);
return true;
}
else return false;
}
// Access bits array
std::vector<bool>& get() { return _bits; }
private:
std::vector<bool> _bits;
int _digits;
};
// Main class in charge of detecting latency measurements
class detector
{
public:
detector(int digits, int display_w)
: _digits(digits), _packer(digits),
_display_w(display_w),
_t([this]() { detect(); }),
_preview_size(600, 350),
_next_value(0), _next(false), _alive(true)
{
using namespace cv;
_start_time = std::chrono::high_resolution_clock::now();
_render_start = std::chrono::high_resolution_clock::now();
_last_preview = Mat::zeros(_preview_size, CV_8UC1);
_instructions = Mat::zeros(Size(display_w, 120), CV_8UC1);
putText(_instructions, "Point the camera at the screen. Ensure all white circles are being captured",
Point(display_w / 2 - 470, 30), FONT_HERSHEY_SIMPLEX,
0.8, Scalar(255, 255, 255), 2, LINE_AA);
putText(_instructions, "Press any key to exit...",
Point(display_w / 2 - 160, 70), FONT_HERSHEY_SIMPLEX,
0.8, Scalar(255, 255, 255), 2, LINE_AA);
}
void begin_render()
{
_render_start = std::chrono::high_resolution_clock::now();
}
void end_render()
{
auto duration = std::chrono::high_resolution_clock::now() - _render_start;
_render_time.add(std::chrono::duration_cast<std::chrono::milliseconds>(duration).count());
}
~detector()
{
_alive = false;
_t.join();
}
// Add new frame from the camera
void submit_frame(rs2::frame f)
{
record frame_for_processing;
frame_for_processing.f = f;
// Read how much time the frame spent from
// being released by the OS-dependent driver (Windows Media Foundation, V4L2 or libuvc)
// to this point in time (when it is first accessible to the application)
auto toa = f.get_frame_metadata(RS2_FRAME_METADATA_TIME_OF_ARRIVAL);
rs2_error* e;
_processing_time.add(rs2_get_time(&e) - toa);
auto duration = std::chrono::high_resolution_clock::now() - _start_time;
auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
frame_for_processing.ms = ms; // Store current clock into the record
_queue.enqueue(std::move(frame_for_processing));
}
// Get next value to transmit
// This will either be the same as the last time
// Or a new value when needed
int get_next_value()
{
// Capture clock for next cycle
if (_next.exchange(false))
{
auto now = std::chrono::high_resolution_clock::now();
auto duration = now - _start_time;
auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
auto next = ms % (1 << (_digits - 2));
if (next == _next_value) next++;
_next_value = next;
}
return _next_value;
}
// Copy preview image stored inside into a matrix
void copy_preview_to(cv::Mat& display)
{
std::lock_guard<std::mutex> lock(_preview_mutex);
cv::Rect roi(cv::Point(_display_w / 2 - _preview_size.width / 2, 200), _last_preview.size());
_last_preview.copyTo(display(roi));
cv::Rect text_roi(cv::Point(0, 580), _instructions.size());
_instructions.copyTo(display(text_roi));
}
private:
struct record
{
rs2::frame f;
long long ms;
};
void next()
{
record r;
while (_queue.try_dequeue(&r));
_next = true;
}
struct detector_lock
{
detector_lock(detector* owner)
: _owner(owner) {}
void abort() { _owner = nullptr; }
~detector_lock() { if(_owner) _owner->next(); }
detector* _owner;
};
// Render textual instructions
void update_instructions()
{
using namespace cv;
std::lock_guard<std::mutex> lock(_preview_mutex);
_instructions = Mat::zeros(Size(_display_w, 120), CV_8UC1);
std::stringstream ss;
ss << "Total Collected Samples: " << _latency.total();
putText(_instructions, ss.str().c_str(),
Point(80, 20), FONT_HERSHEY_SIMPLEX,
0.8, Scalar(255, 255, 255), 2, LINE_AA);
ss.str("");
ss << "Estimated Latency: (Rolling-Median)" << _latency.median() << "ms, ";
ss << "(Average)" << _latency.avg() << "ms";
putText(_instructions, ss.str().c_str(),
Point(80, 60), FONT_HERSHEY_SIMPLEX,
0.8, Scalar(255, 255, 255), 2, LINE_AA);
ss.str("");
ss << "Software Processing: " << _processing_time.median() << "ms";
putText(_instructions, ss.str().c_str(),
Point(80, 100), FONT_HERSHEY_SIMPLEX,
0.8, Scalar(255, 255, 255), 2, LINE_AA);
}
// Detector main loop
void detect()
{
using namespace cv;
while (_alive)
{
std::this_thread::sleep_for(std::chrono::milliseconds(1));
record r;
if (_queue.try_dequeue(&r))
{
// Make sure we request new number,
// UNLESS we decide to keep waiting
detector_lock flush_queue_after(this);
auto color_mat = frame_to_mat(r.f);
if (color_mat.channels() > 1)
cvtColor(color_mat, color_mat, COLOR_BGR2GRAY);
medianBlur(color_mat, color_mat, 5);
std::vector<Vec3f> circles;
cv::Rect roi(Point(0, 0), Size(color_mat.size().width, color_mat.size().height / 4));
HoughCircles(color_mat(roi), circles, HOUGH_GRADIENT, 1, 10, 100, 30, 1, 100);
for (size_t i = 0; i < circles.size(); i++)
{
Vec3i c = circles[i];
Rect r(c[0] - c[2] - 5, c[1] - c[2] - 5, 2 * c[2] + 10, 2 * c[2] + 10);
rectangle(color_mat, r, Scalar(0, 100, 100), -1, LINE_AA);
}
cv::resize(color_mat, color_mat, _preview_size);
{
std::lock_guard<std::mutex> lock(_preview_mutex);
_last_preview = color_mat;
}
sort(circles.begin(), circles.end(),
[](const Vec3f& a, const Vec3f& b) -> bool
{
return a[0] < b[0];
});
if (circles.size() > 1)
{
int min_x = circles[0][0];
int max_x = circles[circles.size() - 1][0];
int circle_est_size = (max_x - min_x) / (_digits + 1);
min_x += circle_est_size / 2;
max_x -= circle_est_size / 2;
_packer.reset();
for (int i = 1; i < circles.size() - 1; i++)
{
const int x = circles[i][0];
const int idx = _digits * ((float)(x - min_x) / (max_x - min_x));
if (idx >= 0 && idx < _packer.get().size())
_packer.get()[idx] = true;
}
int res;
if (_packer.try_unpack(&res))
{
if (res == _next_value)
{
auto cropped = r.ms % (1 << (_digits - 2));
if (cropped > res)
{
auto avg_render_time = _render_time.avg();
_latency.add((cropped - res) - avg_render_time);
update_instructions();
}
}
else
{
// Only in case we detected valid number other then expected
// We continue processing (since this was most likely older valid frame)
flush_queue_after.abort();
}
}
}
}
}
}
const int _digits;
const int _display_w;
std::atomic_bool _alive;
bit_packer _packer;
std::thread _t;
single_consumer_queue<record> _queue;
std::chrono::high_resolution_clock::time_point _start_time;
std::chrono::high_resolution_clock::time_point _render_start;
std::atomic_bool _next;
std::atomic<int> _next_value;
const cv::Size _preview_size;
std::mutex _preview_mutex;
cv::Mat _last_preview;
cv::Mat _instructions;
measurement<int> _render_time;
measurement<int> _processing_time;
measurement<int> _latency;
};