forked from collabora/libsurvive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurvive_sensor_activations.c
More file actions
484 lines (416 loc) · 18.4 KB
/
survive_sensor_activations.c
File metadata and controls
484 lines (416 loc) · 18.4 KB
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
#include "string.h"
#include <assert.h>
#include <math.h>
#include <survive.h>
#include <variance.h>
STRUCT_CONFIG_SECTION(SurviveSensorActivations)
STRUCT_CONFIG_ITEM("move-threshold-gyro", "Threshold to count gyro norms as moving", .075, t->params.moveThresholdGyro)
STRUCT_CONFIG_ITEM("move-threshold-acc", "Threshold to count acc diff norms as moving", .03, t->params.moveThresholdAcc)
STRUCT_CONFIG_ITEM("move-threshold-ang", "Threshold to count light angle diffs as moving", .02,
t->params.moveThresholdAng)
STRUCT_CONFIG_ITEM("filter-threshold-ang-per-sec", "Threshold to filter light which changes too fast", 50.,
t->params.filterLightChange)
STRUCT_CONFIG_ITEM("filter-light-outlier-criteria", "Threshold to filter outlier light strikes", 0.5,
t->params.filterOutlierCriteria)
STRUCT_CONFIG_ITEM("filter-variance-minimum", "Minimum variance to use in outlier detection", 0.05,
t->params.filterVarianceMin)
// 11 here means we always allow up to 2 std deviations
STRUCT_CONFIG_ITEM("filter-outlier-minimum-count", "Assumed minimum population for outlier test", 11,
t->params.filterOutlierMinCount)
END_STRUCT_CONFIG_SECTION(SurviveSensorActivations)
bool SurviveSensorActivations_is_reading_valid(const SurviveSensorActivations *self, survive_long_timecode tolerance,
uint32_t sensor_idx, int lh, int axis) {
return SurviveSensorActivations_time_since_last_reading(self, sensor_idx, lh, axis) <= tolerance;
}
survive_long_timecode SurviveSensorActivations_last_reading(const SurviveSensorActivations *self, uint32_t sensor_idx,
int lh, int axis) {
const survive_long_timecode *data_timecode = self->timecode[sensor_idx][lh];
if (self->lh_gen != 1 && lh < 2 && self->lengths[sensor_idx][lh][axis] == 0)
return UINT64_MAX;
if (isnan(self->angles[sensor_idx][lh][axis]))
return UINT64_MAX;
return data_timecode[axis];
}
survive_long_timecode SurviveSensorActivations_time_since_last_reading(const SurviveSensorActivations *self,
uint32_t sensor_idx, int lh, int axis) {
survive_long_timecode last_reading = SurviveSensorActivations_last_reading(self, sensor_idx, lh, axis);
survive_long_timecode timecode_now = self->last_light;
if (last_reading > timecode_now)
return UINT32_MAX;
return timecode_now - last_reading;
}
bool SurviveSensorActivations_isPairValid(const SurviveSensorActivations *self, uint32_t tolerance,
uint32_t timecode_now, uint32_t idx, int lh) {
const survive_long_timecode *data_timecode = self->timecode[idx][lh];
if (self->lh_gen != 1 && (self->lengths[idx][lh][0] == 0 || self->lengths[idx][lh][1] == 0))
return false;
if (isnan(self->angles[idx][lh][0]) || isnan(self->angles[idx][lh][1]))
return false;
return !(timecode_now - data_timecode[0] > tolerance || timecode_now - data_timecode[1] > tolerance);
}
survive_long_timecode SurviveSensorActivations_last_time(const SurviveSensorActivations *self) {
survive_long_timecode last_time = self->last_light;
if (self->last_imu > last_time) {
last_time = self->last_imu;
}
return last_time;
}
survive_long_timecode SurviveSensorActivations_stationary_time(const SurviveSensorActivations *self) {
survive_long_timecode last_time = SurviveSensorActivations_last_time(self);
survive_long_timecode last_move = self->last_movement;
if (last_move == 0)
return 0;
assert(last_move <= last_time);
return last_time - last_move;
}
void SurviveSensorActivations_register_runtime(SurviveSensorActivations *self, survive_long_timecode tc,
uint64_t runtime_clock_us) {
double runtime_offset = runtime_clock_us - (uint64_t)(tc * 0.0208333333);
if (self->runtime_offset == 0)
self->runtime_offset = runtime_offset;
else {
self->runtime_offset = self->runtime_offset * .90 + .1 * runtime_offset;
}
}
survive_us SurviveSensorActivations_runtime(SurviveSensorActivations *self, survive_long_timecode tc) {
return self->runtime_offset + (uint64_t)(tc * 0.0208333333);
}
void SurviveSensorActivations_add_imu(SurviveSensorActivations *self, struct PoserDataIMU *imuData) {
self->last_imu = imuData->hdr.timecode;
//fprintf(stderr, "imu tc: %f\n", self->last_imu/ 48000000.);
if (self->imu_init_cnt > 0) {
self->imu_init_cnt--;
return;
}
copy3d(self->last_accel, imuData->accel);
if (isnan(self->accel[0])) {
for (int i = 0; i < 3; i++) {
self->accel[i] = imuData->accel[i];
self->gyro[i] = imuData->gyro[i];
self->mag[i] = imuData->mag[i];
}
self->last_movement = imuData->hdr.timecode;
} else {
for (int i = 0; i < 3; i++) {
self->accel[i] = .98 * self->accel[i] + .02 * imuData->accel[i];
self->gyro[i] = .98 * self->gyro[i] + .02 * imuData->gyro[i];
self->mag[i] = .98 * self->mag[i] + .02 * imuData->mag[i];
}
}
struct SurviveObject *so = self->so;
SV_DATA_LOG("accel running average", self->accel, 3);
if (norm3d(imuData->gyro) > self->params.moveThresholdGyro ||
dist3d(self->accel, imuData->accel) > self->params.moveThresholdAcc) {
self->last_movement = imuData->hdr.timecode;
SurviveContext *ctx = self->so->ctx;
SV_VERBOSE(200, "%s moved (gyro %7.7f, acc %7.7f)", survive_colorize_codename(so), norm3d(imuData->gyro),
dist3d(self->accel, imuData->accel));
//fprintf(stderr, "%f %f\n", norm3d(imuData->gyro), dist3d(self->accel, imuData->accel));
}
}
static inline bool SurviveSensorActivations_check_outlier(SurviveSensorActivations *self, int sensor_id, int lh,
int axis, survive_long_timecode timecode, FLT angle) {
FLT *oldangle = &self->angles[sensor_id][lh][axis];
FLT chauvenet_criterion = -1;
FLT dev = 0;
FLT measured_dev = -1;
int cnt = -1;
const char *failure_reason = "None";
if (self->angles_center_dev[lh][axis] == 0) {
goto accept_data;
}
const survive_long_timecode *data_timecode = &self->timecode[sensor_id][lh][axis];
FLT change_rate = fabs(*oldangle - angle) / (FLT)(timecode - *data_timecode) * 48000000.;
if (*data_timecode != 0 && change_rate > self->params.filterLightChange && self->params.filterLightChange > -1) {
goto delta_failure;
}
measured_dev = self->angles_center_dev[lh][axis];
dev = linmath_max(self->params.filterVarianceMin, measured_dev);
cnt = self->angles_center_cnt[lh][axis];
if (cnt < self->params.filterOutlierMinCount)
cnt = self->params.filterOutlierMinCount;
chauvenet_criterion = linmath_chauvenet_criterion(angle, self->angles_center_x[lh][axis], dev, cnt);
struct SurviveObject *so = self->so;
SV_DATA_LOG("chauvenet_criterion[%d][%d][%d]", &chauvenet_criterion, 1, sensor_id, lh, axis);
if (measured_dev > 0 && self->params.filterOutlierCriteria > 0 &&
chauvenet_criterion < self->params.filterOutlierCriteria) {
goto chauvenet_criterion_failure;
}
accept_data:
if (self->so && self->so->ctx) {
SurviveContext *ctx = self->so->ctx;
SV_VERBOSE(
500,
"Accepting new: %+7.7f(old: %+7.7f, mean: %+7.7f, Z: %7.7f) for %2d.%2d.%d (Chauvenet: %7.7f) dev: %+7.7f "
"measured_dev: %+7.7f cnt: %d",
angle, *oldangle, self->angles_center_x[lh][axis], fabs(angle - self->angles_center_x[lh][axis]) / dev, lh,
sensor_id, axis, chauvenet_criterion, dev, measured_dev, cnt);
}
return false;
chauvenet_criterion_failure:
failure_reason = "chauvenet";
goto reject_data;
delta_failure:
failure_reason = "delta";
goto reject_data;
reject_data:
if (self->so && self->so->ctx) {
SurviveContext *ctx = self->so->ctx;
SV_VERBOSE(105,
"Rejecting outlier new: %+7.7f(old: %+7.7f, mean: %+7.7f, Z: %7.7f) for %2d.%2d.%d (Chauvenet: "
"%7.7f) dev: %+7.7f "
"measured_dev: %+7.7f cnt: %d (%s)",
angle, *oldangle, self->angles_center_x[lh][axis],
fabs(angle - self->angles_center_x[lh][axis]) / dev, lh, sensor_id, axis, chauvenet_criterion, dev,
measured_dev, cnt, survive_colorize(failure_reason));
}
return true;
}
SURVIVE_EXPORT void SurviveSensorActivations_valid_counts(SurviveSensorActivations *self,
survive_long_timecode tolerance, uint32_t *meas_cnt,
uint32_t *lh_count, uint32_t *axis_cnt,
size_t *meas_for_lhs_axis) {
survive_timecode sensor_time_window = tolerance == 0 ? SurviveSensorActivations_default_tolerance : tolerance;
SurviveContext *ctx = self->so->ctx;
for (int lh = 0; lh < ctx->activeLighthouses; lh++) {
if (!ctx->bsd[lh].PositionSet) {
continue;
}
bool seenLH = false;
for (uint8_t sensor = 0; sensor < self->so->sensor_ct; sensor++) {
bool seenAxis = false;
for (uint8_t axis = 0; axis < 2; axis++) {
survive_timecode last_reading =
SurviveSensorActivations_time_since_last_reading(self, sensor, lh, axis);
bool isReadingValue = last_reading < sensor_time_window;
if (isReadingValue) {
if (meas_cnt)
(*meas_cnt)++;
if (axis_cnt && !seenAxis)
(*axis_cnt)++;
if (lh_count && !seenLH)
(*lh_count)++;
seenLH = true;
seenAxis = true;
if (meas_for_lhs_axis) {
meas_for_lhs_axis[lh * 2 + axis]++;
}
}
}
}
}
}
bool SurviveSensorActivations_add_gen2(SurviveSensorActivations *self, struct PoserDataLightGen2 *lightData) {
self->lh_gen = 1;
if (lightData->common.hdr.pt == POSERDATA_SYNC_GEN2) {
SurviveSensorActivations_add_sync(self, &lightData->common);
} else if (lightData->common.hdr.pt == POSERDATA_LIGHT_GEN2) {
int axis = lightData->plane;
PoserDataLight *l = &lightData->common;
if (l->sensor_id >= SENSORS_PER_OBJECT)
return false;
self->raw_angles[l->sensor_id][l->lh][axis] = l->angle;
self->raw_timecode[l->sensor_id][l->lh][axis] = l->hdr.timecode;
survive_long_timecode *data_timecode = &self->timecode[l->sensor_id][l->lh][axis];
FLT *angle = &self->angles[l->sensor_id][l->lh][axis];
if (!SurviveSensorActivations_check_outlier(self, l->sensor_id, l->lh, axis, l->hdr.timecode, l->angle)) {
survive_long_timecode long_timecode = l->hdr.timecode;
if (!isnan(*angle) && fabs(*angle - l->angle) > self->params.moveThresholdAng) {
self->last_light_change = self->last_movement = long_timecode;
SurviveContext *ctx = self->so->ctx;
SV_VERBOSE(200, "%s moved (light)", survive_colorize_codename(self->so));
//fprintf(stderr, "%f\n", fabs(*angle - l->angle));
}
if (isnan(*angle))
self->last_light_change = long_timecode;
// fprintf(stderr, "Time %f\n", l->hdr.timecode / 48000000.);
*data_timecode = l->hdr.timecode;
*angle = l->angle;
} else {
return false;
}
}
if (lightData->common.hdr.timecode > self->last_light) {
self->last_light = lightData->common.hdr.timecode;
}
return true;
}
SURVIVE_EXPORT void SurviveSensorActivations_reset(SurviveSensorActivations *self) {
struct SurviveObject *so = self->so;
struct SurviveSensorActivations_params p = self->params;
memset(self, 0, sizeof(SurviveSensorActivations));
self->params = p;
self->so = so;
for (int i = 0; i < SENSORS_PER_OBJECT; i++) {
for (int j = 0; j < NUM_GEN2_LIGHTHOUSES; j++) {
for (int h = 0; h < 2; h++) {
self->angles[i][j][h] = NAN;
self->raw_angles[i][j][h] = NAN;
self->angles_center_x[j][h] = NAN;
}
}
}
for (int i = 0; i < 3; i++) {
self->accel[i] = NAN;
}
self->imu_init_cnt = 30;
}
SURVIVE_EXPORT void SurviveSensorActivations_ctor(SurviveObject *so, SurviveSensorActivations *self) {
SurviveSensorActivations_reset(self);
SurviveSensorActivations_attach_config(so ? so->ctx : 0, self);
self->so = so;
self->lh_gen = -1;
}
SURVIVE_EXPORT void SurviveSensorActivations_dtor(SurviveObject *so) {
SurviveSensorActivations_detach_config(so ? so->ctx : 0, &so->activations);
}
void SurviveSensorActivations_add_sync(SurviveSensorActivations *self, struct PoserDataLight *lightData) {
int lh = lightData->lh;
survive_long_timecode timecode = lightData->hdr.timecode;
for (int axis = 0; axis < 2; axis++) {
bool changes = true;
FLT mean = 0;
FLT deviation = 0;
FLT rejected = 0;
int cnt = 0;
int total_angles = 0;
for (int passes = 0; passes < 2 && changes; passes++) {
changes = passes == 0;
total_angles = 0;
rejected = 0;
struct variance_measure variance_calc = {0};
for (int i = 0; i < SENSORS_PER_OBJECT; i++) {
survive_long_timecode sensor_timecode = self->raw_timecode[i][lh][axis];
FLT angle = self->raw_angles[i][lh][axis];
bool isRecent = timecode - sensor_timecode < 48000000 / 2;
if (isRecent && isfinite(angle)) {
total_angles++;
FLT unbias_deviation = deviation - fabs(mean - angle) / (FLT)cnt;
FLT chauvenet_criterion = linmath_chauvenet_criterion(angle, mean, unbias_deviation, cnt);
bool isOutlier = self->params.filterOutlierCriteria > 0 &&
chauvenet_criterion < self->params.filterOutlierCriteria && deviation != 0;
if (!isOutlier) {
variance_measure_add(&variance_calc, &angle);
} else {
rejected++;
changes = true;
}
}
}
if (variance_calc.n) {
variance_measure_calc(&variance_calc, &deviation);
deviation = sqrt(deviation);
mean = variance_calc.sum[0] / (FLT)variance_calc.n;
cnt = (int)variance_calc.n;
}
}
self->angles_center_x[lh][axis] = mean;
self->angles_center_dev[lh][axis] = deviation;
self->angles_center_cnt[lh][axis] = cnt;
struct SurviveObject *so = self->so;
SV_DATA_LOG("light_mean[%d][%d]", &mean, 1, lh, axis)
SV_DATA_LOG("light_deviation[%d][%d]", &deviation, 1, lh, axis)
FLT cnt_f = cnt;
SV_DATA_LOG("light_count[%d][%d]", &cnt_f, 1, lh, axis)
SV_DATA_LOG("light_rejected[%d][%d]", &rejected, 1, lh, axis)
}
}
bool SurviveSensorActivations_add(SurviveSensorActivations *self, struct PoserDataLightGen1 *_lightData) {
self->lh_gen = 0;
if (self->last_imu == 0)
return false;
SurviveContext *ctx = self->so->ctx;
int axis = (_lightData->acode & 1);
PoserDataLight *lightData = &_lightData->common;
survive_long_timecode *data_timecode = &self->timecode[lightData->sensor_id][lightData->lh][axis];
FLT *angle = &self->angles[lightData->sensor_id][lightData->lh][axis];
self->raw_angles[lightData->sensor_id][lightData->lh][axis] = lightData->angle;
self->raw_timecode[lightData->sensor_id][lightData->lh][axis] = lightData->hdr.timecode;
if (SurviveSensorActivations_check_outlier(self, lightData->sensor_id, lightData->lh, axis, lightData->hdr.timecode,
lightData->angle)) {
return false;
}
uint32_t *length = &self->lengths[lightData->sensor_id][lightData->lh][axis];
self->hits[lightData->sensor_id][lightData->lh][axis]++;
if (*length == 0 || fabs(*angle - lightData->angle) > self->params.moveThresholdAng) {
survive_long_timecode long_timecode = lightData->hdr.timecode;
// assert(long_timecode > self->last_movement);
self->last_light_change = self->last_movement = long_timecode;
SurviveContext *ctx = self->so->ctx;
SV_VERBOSE(200, "%s moved (light)", survive_colorize_codename(self->so));
//fprintf(stderr, "%f\n", fabs(*angle - lightData->angle));
}
*angle = lightData->angle;
*data_timecode = lightData->hdr.timecode;
*length = (uint32_t)(_lightData->length * 48000000);
if (lightData->hdr.timecode > self->last_light) {
if (self->last_light != 0 && lightData->hdr.timecode - self->last_light > 480000000) {
SV_WARN("Bad update");
}
self->last_light = lightData->hdr.timecode;
}
return true;
// fprintf(stderr, "lightcap tc: %f\n", lightData->hdr.timecode/ 48000000.);
}
static inline survive_long_timecode make_long_timecode(survive_long_timecode prev, survive_timecode current) {
survive_long_timecode rtn = current | (prev & 0xFFFFFFFF00000000);
if (rtn < prev && rtn + 0x80000000 < prev) {
rtn += 0x100000000;
}
if (rtn > prev && prev + 0x80000000 < rtn && rtn > 0x100000000) {
rtn -= 0x100000000;
}
return rtn;
}
SURVIVE_EXPORT survive_long_timecode SurviveSensorActivations_long_timecode_imu(const SurviveSensorActivations *self,
survive_timecode timecode) {
return make_long_timecode(self->last_imu, timecode);
}
#define DIV_ROUND_CLOSEST(n, d) ((((n) < 0) ^ ((d) < 0)) ? (((n) - (d) / 2) / (d)) : (((n) + (d) / 2) / (d)))
SURVIVE_EXPORT survive_long_timecode SurviveSensorActivations_long_timecode_light(const SurviveSensorActivations *self,
survive_timecode timecode) {
survive_long_timecode initial_time = make_long_timecode(self->last_light, timecode);
int64_t time_sync_error = initial_time - self->last_imu;
/***
There obstensibly seems to be a defect in the firmware for at least the LH1 tracking devices. What seems to be
happening is that the internal clock for IMU (presumably on the ARM) and lightcap (presumably on the FPGA) can
get out of sync by modulo 1^28 counts. This is reproducible by purposefully doing hid_reads with less space
than the device wants (>64 bytes). Presumably this causes some kind of backup on the device and maybe an IRQ
gets skipped or something. Impossible to say really without seeing source code but the observations are:
- This can occasionally happen at random. The theory here is that OS's typically interogate HID devices and
seem to trigger the behavior very rarely
- When triggered the IMU and lightcap datastreams seem desynced by some multiple of 2^28 / (48mhz) seconds
- The only thing that fixes it reliably is a power cycle. USB disconnect / reconnect, device magics, etc etc
don't fix it
- Running steamvr tools doesn't fix it but there isn't a change in tracking behavior. So the thinking is that
steamvr mitigates the issue instead of having a way to fix it.
So with all that said, we mitigate it here by just finding the offset that makes sense and applying it. I
suspect that the more consistent clock is the lightcaps, but the IMU comes in at fixed frequencies so we
use that as a basis. It's worth noting that I've never seen a system develop this while running; it would
likely cause some chaos if it did since it'd kick the kalman out of sorts.
***/
if (self->last_imu != 0 && labs(time_sync_error) > 48000000) {
int64_t offset = 0x10000000;
int scale = DIV_ROUND_CLOSEST(time_sync_error, offset);
initial_time -= offset * scale;
}
return initial_time;
}
FLT SurviveSensorActivations_difference(const SurviveSensorActivations *rhs, const SurviveSensorActivations *lhs) {
FLT rtn = 0;
int cnt = 0;
for (size_t i = 0; i < SENSORS_PER_OBJECT; i++) {
for (size_t lh = 0; lh < NUM_GEN1_LIGHTHOUSES; lh++) {
for (size_t axis = 0; axis < 2; axis++) {
if (rhs->lengths[i][lh][axis] > 0 && lhs->lengths[i][lh][axis] > 0) {
FLT diff = rhs->angles[i][lh][axis] - lhs->angles[i][lh][axis];
rtn += diff * diff;
cnt++;
}
}
}
}
return rtn / (FLT)cnt;
}
SURVIVE_EXPORT uint32_t SurviveSensorActivations_default_tolerance =
(uint32_t)(48000000 /*mhz*/ * (16.7 /*ms*/) / 1000) + 5000;