Datasets:

DOI:
License:
mateosss commited on
Commit
eb3ec80
·
1 Parent(s): 42b8e38

Update readme

Browse files
M_monado_datasets/MG_reverb_g2/README.md ADDED
@@ -0,0 +1 @@
 
 
1
+ To be done.
M_monado_datasets/MI_valve_index/README.md ADDED
@@ -0,0 +1,251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Valve Index datasets
2
+
3
+ These datasets were recorded using a Valve Index with the `vive` driver in
4
+ Monado and they have ground truth from 3 lighthouses tracking the headset through
5
+ the proprietary OpenVR implementation provided by SteamVR. The exact commit used
6
+ in Monado at the time of recording is
7
+ [a4e7765d](https://gitlab.freedesktop.org/mateosss/monado/-/commit/a4e7765d7219b06a0c801c7bb33f56d3ea69229d).
8
+ The datasets are in the ASL dataset format, the same as the [EuRoC
9
+ datasets](https://projects.asl.ethz.ch/datasets/doku.php?id=kmavvisualinertialdatasets).
10
+ Besides the main EuRoC format files, we provide some extra files with raw
11
+ timestamp data for exploring real time timestamp alignment techniques.
12
+
13
+ The dataset is post-processed to reduce as much as possible special treatment
14
+ from SLAM systems: camera-IMU and ground truth-IMU timestamp alignment, IMU
15
+ alignment and bias calibration have been applied, lighthouse tracked pose has
16
+ been converted to IMU pose, and so on. Most of the post-processing was done with
17
+ Basalt
18
+ [calibration](https://gitlab.com/VladyslavUsenko/basalt/-/blob/master/doc/Calibration.md?ref_type=heads#camera-imu-mocap-calibration)
19
+ and
20
+ [alignment](https://gitlab.com/VladyslavUsenko/basalt/-/blob/master/doc/Realsense.md?ref_type=heads#generating-time-aligned-ground-truth)
21
+ tools, as well as the
22
+ [xrtslam-metrics](https://gitlab.freedesktop.org/mateosss/xrtslam-metrics)
23
+ scripts for Monado tracking. The post-processing process is documented in [this
24
+ video][post-processing-video] which goes through making the [MIPB08] dataset ready
25
+ for use starting from its raw version.
26
+
27
+ ### Data
28
+
29
+ #### Camera samples
30
+
31
+ In the `vive` driver from Monado, we don't have direct access to the camera
32
+ device timestamps but only to V4L2 timestamps. These are not exactly hardware
33
+ timestamps and have some offset with respect to the device clock in which the
34
+ IMU samples are timestamped.
35
+
36
+ The camera frames can be found in the `camX/data` directory as PNG files with
37
+ names corresponding to their V4L2 timestamps. The `camX/data.csv` file contains
38
+ aligned timestamps of each frame. The `camX/data.extra.csv` also contains the
39
+ original V4L2 timestamp and the "host timestamp" which is the time at which the
40
+ host computer had the frame ready to use after USB transmission. By separating
41
+ arrival time and exposure time algorithms can be made to be more robust for
42
+ real time operation.
43
+
44
+ The cameras of the Valve Index have global shutters with a resolution of 960×960
45
+ streaming at 54fps. They have auto exposure enabled. While the cameras of the
46
+ Index are RGB you will find only grayscale images in these datasets. The
47
+ original images are provided in YUYV422 format but only the luma component is
48
+ stored.
49
+
50
+ For each dataset, the camera timestamps are aligned with respect to IMU
51
+ timestamps by running visual-only odometry with Basalt on a 30-second subset of
52
+ the dataset. The resulting trajectory is then aligned with the
53
+ [`basalt_time_alignment`](https://gitlab.com/VladyslavUsenko/basalt/-/blob/master/doc/Realsense.md?ref_type=heads#generating-time-aligned-ground-truth)
54
+ tool that aligns the rotational velocities of the trajectory with the gyroscope
55
+ samples and returns the resulting offset in nanoseconds. That correction is then
56
+ applied to the dataset. Refer to the post-processing walkthrough
57
+ [video][post-processing-video] for more details.
58
+
59
+ #### IMU samples
60
+
61
+ The IMU timestamps are device timestamps, they come at about 1000Hz. We provide
62
+ an `imu0/data.raw.csv` file that contains the raw measurements without any axis
63
+ scale misalignment o bias correction. `imu0/data.csv` has the
64
+ scale misalignment and bias corrections applied so that the SLAM system can
65
+ ignore those corrections. `imu0/data.extra.csv` contains the arrival time of the
66
+ IMU sample to the host computer for algorithms that want to adapt themselves to
67
+ work in real time.
68
+
69
+ #### Ground truth information
70
+
71
+ The ground truth setup consists of three lighthouses 2.0 base stations and a
72
+ SteamVR session providing tracking data through the OpenVR API to Monado. While
73
+ not as precise as other MoCap tracking systems like OptiTrack or Vicon it
74
+ should still provide pretty good accuracy and precision close to the 1mm range.
75
+ There are different attempts at studying the accuracy of SteamVR tracking that
76
+ you can check out like
77
+ [this](https://dl.acm.org/doi/pdf/10.1145/3463914.3463921),
78
+ [this](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7956487/pdf/sensors-21-01622.pdf),
79
+ or [this](http://doc-ok.org/?p=1478). When a tracking system gets closer to
80
+ millimeter accuracy these datasets will no longer be as useful for improving it.
81
+
82
+ The raw ground truth data is stored in `gt/data.raw.csv`. OpenVR does not provide
83
+ timestamps and as such, the timestamps recorded are from when the host asks
84
+ OpenVR for the latest pose with a call to
85
+ [`GetDeviceToAbsoluteTrackingPose`](https://github.com/ValveSoftware/openvr/wiki/IVRSystem::GetDeviceToAbsoluteTrackingPose).
86
+ The poses contained in this file are not of the IMU but of the headset origin as
87
+ interpreted by SteamVR, which usually is between the middle of the eyes and
88
+ facing towards the displays. The file `gt/data.csv` corrects each entry of the
89
+ previous file with timestamps aligned with the IMU clock and poses of the IMU
90
+ instead of this headset origin.
91
+
92
+ #### Calibration
93
+
94
+ There are multiple calibration datasets in the
95
+ [`MIC_calibration`](https://huggingface.co/datasets/collabora/monado-slam-datasets/tree/main/M_monado_datasets/MI_valve_index/MIC_calibration)
96
+ directory. There are camera-focused and IMU-focused calibration datasets. See
97
+ the
98
+ [README.md](https://huggingface.co/datasets/collabora/monado-slam-datasets/blob/main/M_monado_datasets/MI_valve_index/MIC_calibration/README.md)
99
+ file in there for more information on what each sequence is.
100
+
101
+ In the
102
+ [`MI_valve_index/extras`](https://huggingface.co/datasets/collabora/monado-slam-datasets/tree/main/M_monado_datasets/MI_valve_index/extras)
103
+ directory you can find the following files:
104
+
105
+ - [`calibration.json`](https://huggingface.co/datasets/collabora/monado-slam-datasets/blob/main/M_monado_datasets/MI_valve_index/extras/calibration.json):
106
+ Calibration file produced with the
107
+ [`basalt_calibrate_imu`](https://gitlab.com/VladyslavUsenko/basalt/-/blob/master/doc/Calibration.md?ref_type=heads#camera-imu-mocap-calibration)
108
+ tool from
109
+ [`MIC01_camcalib1`](https://huggingface.co/datasets/collabora/monado-slam-datasets/blob/main/M_monado_datasets/MI_valve_index/MIC_calibration/MIC01_camcalib1.zip)
110
+ and
111
+ [`MIC04_imucalib1`](https://huggingface.co/datasets/collabora/monado-slam-datasets/blob/main/M_monado_datasets/MI_valve_index/MIC_calibration/MIC04_imucalib1.zip)
112
+ datasets with camera-IMU time offset and IMU bias/misalignment info removed so
113
+ that it works with the fully the all the datasets by default which are fully
114
+ post-processed and don't require those fields.
115
+ - [`calibration.extra.json`](https://huggingface.co/datasets/collabora/monado-slam-datasets/blob/main/M_monado_datasets/MI_valve_index/extras/calibration.extra.json):
116
+ Same as `calibration.json` but with the cam-IMU time offset and IMU bias and
117
+ misalignment information filled in.
118
+ - [`factory.json`](https://huggingface.co/datasets/collabora/monado-slam-datasets/blob/main/M_monado_datasets/MI_valve_index/extras/factory.json):
119
+ JSON file exposed by the headset's firmware with information of the device. It
120
+ includes camera and display calibration as well as more data that might be of
121
+ interest. It is not used but included for completeness' sake.
122
+ - [`other_calibrations/`](https://huggingface.co/datasets/collabora/monado-slam-datasets/tree/main/M_monado_datasets/MI_valve_index/extras/other_calibrations):
123
+ Calibration results obtained from the other calibration datasets. Shown for
124
+ comparison and ensuring that all of them have similar values.
125
+ `MICXX_camcalibY` has camera-only calibration produced with the
126
+ [`basalt_calibrate`](https://gitlab.com/VladyslavUsenko/basalt/-/blob/master/doc/Calibration.md?ref_type=heads#camera-calibration)
127
+ tool, while the corresponding `MICXX_imucalibY` datasets use these datasets as
128
+ a starting point and have the `basalt_calibrate_imu` calibration results.
129
+
130
+ ##### Camera model
131
+
132
+ By default, the `calibration.json` file provides parameters `k1`, `k2`, `k3`,
133
+ and `k4` for the [Kannala-Brandt camera
134
+ model](https://vladyslavusenko.gitlab.io/basalt-headers/classbasalt_1_1KannalaBrandtCamera4.html#a423a4f1255e9971fe298dc6372345681)
135
+ with fish-eye distortion (also known as [OpenCV's
136
+ fish-eye](https://docs.opencv.org/3.4/db/d58/group__calib3d__fisheye.html#details)).
137
+
138
+ Calibrations with other camera models might be added later on, otherwise, you
139
+ can use the calibration sequences for custom calibrations.
140
+
141
+ ##### IMU model
142
+
143
+ For the default `calibration.json` where all parameters are zero, you can ignore
144
+ any model and just use the measurements present in `imu0/data.csv` directly. If
145
+ instead, you want to use the raw measurements from `imu0/data.raw.csv` you will
146
+ need to apply the Basalt
147
+ [accelerometer](https://vladyslavusenko.gitlab.io/basalt-headers/classbasalt_1_1CalibAccelBias.html#details)
148
+ and
149
+ [gyroscope](https://vladyslavusenko.gitlab.io/basalt-headers/classbasalt_1_1CalibGyroBias.html#details)
150
+ models that use a misalignment-scale correction matrix together with a constant
151
+ initial bias. The random walk and white noise parameters were not computed and
152
+ default reasonable values are used instead.
153
+
154
+ #### Post-processing walkthrough
155
+
156
+ If you are interested in understanding the step-by-step procedure of
157
+ post-processing of the dataset, below is a video detailing the procedure for the
158
+ [MIPB08] dataset.
159
+
160
+ [![Post-processing walkthrough video](https://img.youtube.com/vi/0PX_6PNwrvQ/0.jpg)](https://www.youtube.com/watch?v=0PX_6PNwrvQ)
161
+
162
+ ### Evaluation
163
+
164
+ These are the results of running the
165
+ [current](https://gitlab.freedesktop.org/mateosss/basalt/-/commits/release-b67fa7a4?ref_type=tags)
166
+ Monado tracker that is based on
167
+ [Basalt](https://gitlab.com/VladyslavUsenko/basalt) on the dataset sequences.
168
+
169
+ | Seq. | Avg. time\* | Avg. feature count | ATE (m) | RTE 100ms (m) \*\* | SDM 0.01m (m/m) \*\*\* |
170
+ | :------ | :--------------- | :-------------------- | :---------------- | :---------------------- | :--------------------- |
171
+ | MIO01 | 10.04 ± 1.43 | [36 23] ± [28 18] | 0.605 ± 0.342 | 0.035671 ± 0.033611 | 0.4246 ± 0.5161 |
172
+ | MIO02 | 10.41 ± 1.48 | [32 18] ± [25 16] | 1.182 ± 0.623 | 0.063340 ± 0.059176 | 0.4681 ± 0.4329 |
173
+ | MIO03 | 10.24 ± 1.37 | [47 26] ± [26 16] | 0.087 ± 0.033 | 0.006293 ± 0.004259 | 0.2113 ± 0.2649 |
174
+ | MIO04 | 9.47 ± 1.08 | [27 16] ± [25 16] | 0.210 ± 0.100 | 0.013121 ± 0.010350 | 0.3086 ± 0.3715 |
175
+ | MIO05 | 9.95 ± 1.01 | [66 34] ± [33 21] | 0.040 ± 0.016 | 0.003188 ± 0.002192 | 0.1079 ± 0.1521 |
176
+ | MIO06 | 9.65 ± 1.06 | [44 28] ± [33 22] | 0.049 ± 0.019 | 0.010454 ± 0.008578 | 0.2620 ± 0.3684 |
177
+ | MIO07 | 9.63 ± 1.16 | [46 26] ± [30 19] | 0.019 ± 0.008 | 0.002442 ± 0.001355 | 0.0738 ± 0.0603 |
178
+ | MIO08 | 9.74 ± 0.87 | [29 22] ± [18 16] | 0.059 ± 0.021 | 0.007167 ± 0.004657 | 0.1644 ± 0.3433 |
179
+ | MIO09 | 9.94 ± 0.72 | [44 29] ± [14 8] | 0.006 ± 0.003 | 0.002940 ± 0.002024 | 0.0330 ± 0.0069 |
180
+ | MIO10 | 9.48 ± 0.82 | [35 21] ± [18 10] | 0.016 ± 0.009 | 0.004623 ± 0.003310 | 0.0620 ± 0.0340 |
181
+ | MIO11 | 9.34 ± 0.79 | [32 20] ± [19 10] | 0.024 ± 0.010 | 0.007255 ± 0.004821 | 0.0854 ± 0.0540 |
182
+ | MIO12 | 11.05 ± 2.20 | [43 23] ± [31 19] | 0.420 ± 0.160 | 0.005298 ± 0.003603 | 0.1546 ± 0.2641 |
183
+ | MIO13 | 10.47 ± 1.89 | [35 21] ± [24 18] | 0.665 ± 0.290 | 0.026294 ± 0.022790 | 1.0180 ± 1.0126 |
184
+ | MIO14 | 9.27 ± 1.03 | [49 31] ± [30 21] | 0.072 ± 0.028 | 0.002779 ± 0.002487 | 0.1657 ± 0.2409 |
185
+ | MIO15 | 9.75 ± 1.16 | [52 26] ± [29 16] | 0.788 ± 0.399 | 0.011558 ± 0.010541 | 0.6906 ± 0.6876 |
186
+ | MIO16 | 9.72 ± 1.26 | [33 17] ± [25 15] | 0.517 ± 0.135 | 0.013268 ± 0.011355 | 0.4397 ± 0.7167 |
187
+ | MIPB01 | 10.28 ± 1.25 | [63 46] ± [34 24] | 0.282 ± 0.109 | 0.006797 ± 0.004551 | 0.1401 ± 0.1229 |
188
+ | MIPB02 | 9.88 ± 1.08 | [55 37] ± [30 20] | 0.247 ± 0.097 | 0.005065 ± 0.003514 | 0.1358 ± 0.1389 |
189
+ | MIPB03 | 10.21 ± 1.12 | [66 44] ± [32 23] | 0.186 ± 0.103 | 0.005938 ± 0.004261 | 0.1978 ± 0.3590 |
190
+ | MIPB04 | 9.58 ± 1.02 | [51 37] ± [24 17] | 0.105 ± 0.060 | 0.004822 ± 0.003428 | 0.0652 ± 0.0555 |
191
+ | MIPB05 | 9.97 ± 0.97 | [73 48] ± [32 23] | 0.039 ± 0.017 | 0.004426 ± 0.002828 | 0.0826 ± 0.1313 |
192
+ | MIPB06 | 9.95 ± 0.85 | [58 35] ± [32 21] | 0.050 ± 0.022 | 0.004164 ± 0.002638 | 0.0549 ± 0.0720 |
193
+ | MIPB07 | 10.07 ± 1.00 | [73 47] ± [31 20] | 0.064 ± 0.038 | 0.004984 ± 0.003170 | 0.0785 ± 0.1411 |
194
+ | MIPB08 | 9.97 ± 1.08 | [71 47] ± [36 24] | 0.636 ± 0.272 | 0.004066 ± 0.002556 | 0.0740 ± 0.0897 |
195
+ | MIPP01 | 10.03 ± 1.21 | [36 22] ± [21 15] | 0.559 ± 0.241 | 0.009227 ± 0.007765 | 0.3472 ± 0.9075 |
196
+ | MIPP02 | 10.19 ± 1.20 | [42 22] ± [22 15] | 0.257 ± 0.083 | 0.011046 ± 0.010201 | 0.5014 ± 0.7665 |
197
+ | MIPP03 | 10.13 ± 1.24 | [37 20] ± [23 15] | 0.260 ± 0.101 | 0.008636 ± 0.007166 | 0.3205 ± 0.5786 |
198
+ | MIPP04 | 9.74 ± 1.09 | [38 23] ± [22 16] | 0.256 ± 0.144 | 0.007847 ± 0.006743 | 0.2586 ± 0.4557 |
199
+ | MIPP05 | 9.71 ± 0.84 | [37 24] ± [21 15] | 0.193 ± 0.086 | 0.005606 ± 0.004400 | 0.1670 ± 0.2398 |
200
+ | MIPP06 | 9.92 ± 3.11 | [37 21] ± [21 14] | 0.294 ± 0.136 | 0.009794 ± 0.008873 | 0.4016 ± 0.5648 |
201
+ | MIPT01 | 10.78 ± 2.06 | [68 44] ± [33 23] | 0.108 ± 0.060 | 0.003995 ± 0.002716 | 0.7109 ± 13.3461 |
202
+ | MIPT02 | 10.85 ± 1.27 | [79 54] ± [39 28] | 0.198 ± 0.109 | 0.003709 ± 0.002348 | 0.0839 ± 0.1175 |
203
+ | MIPT03 | 10.80 ± 1.55 | [76 52] ± [42 30] | 0.401 ± 0.206 | 0.005623 ± 0.003694 | 0.1363 ± 0.1789 |
204
+ | **AVG** | **11.33 ± 1.83** | **[49 23] ± [37 15]** | **0.192 ± 0.090** | **0.009439 ± 0.007998** | **0.3247 ± 0.6130** |
205
+
206
+ | Seq. | Avg. time\* | Avg. feature count | ATE (m) | RTE 100ms (m) \*\* | SDM 0.01m (m/m) \*\*\* |
207
+ | :------ | :--------------- | :-------------------- | :---------------- | :---------------------- | :--------------------- |
208
+ | MGO01 | 12.06 ± 2.10 | [19 16] ± [13 12] | 0.680 ± 0.249 | 0.022959 ± 0.019026 | 0.3604 ± 1.3031 |
209
+ | MGO02 | 11.20 ± 1.83 | [19 15] ± [19 16] | 0.556 ± 0.241 | 0.027931 ± 0.019074 | 0.3218 ± 0.4599 |
210
+ | MGO03 | 9.88 ± 1.92 | [22 16] ± [16 16] | 0.145 ± 0.041 | 0.013003 ± 0.008555 | 0.2433 ± 0.3512 |
211
+ | MGO04 | 9.43 ± 1.45 | [16 14] ± [16 16] | 0.261 ± 0.113 | 0.024674 ± 0.017380 | 0.3609 ± 0.4829 |
212
+ | MGO05 | 9.93 ± 1.71 | [39 40] ± [17 26] | 0.030 ± 0.011 | 0.004212 ± 0.002632 | 0.0621 ± 0.1044 |
213
+ | MGO06 | 10.40 ± 1.84 | [24 22] ± [18 18] | 0.111 ± 0.038 | 0.018013 ± 0.011398 | 0.2496 ± 0.2802 |
214
+ | MGO07 | 9.74 ± 1.54 | [30 24] ± [13 12] | 0.021 ± 0.010 | 0.005628 ± 0.003707 | 0.0992 ± 0.1538 |
215
+ | MGO08 | 9.42 ± 1.43 | [17 13] ± [11 8] | 0.027 ± 0.015 | 0.013162 ± 0.009729 | 0.1667 ± 0.4068 |
216
+ | MGO09 | 10.90 ± 1.70 | [39 34] ± [11 9] | 0.008 ± 0.004 | 0.006278 ± 0.004054 | 0.0738 ± 0.0492 |
217
+ | MGO10 | 9.31 ± 1.36 | [29 37] ± [14 17] | 0.008 ± 0.003 | 0.003496 ± 0.002333 | 0.0439 ± 0.0311 |
218
+ | MGO11 | 9.26 ± 1.08 | [30 22] ± [13 17] | 0.017 ± 0.006 | 0.006065 ± 0.004285 | 0.0687 ± 0.0604 |
219
+ | MGO12 | 9.33 ± 1.39 | [20 19] ± [17 19] | 0.610 ± 0.270 | 0.017372 ± 0.016246 | 0.7225 ± 10.7366 |
220
+ | MGO13 | 10.08 ± 1.98 | [18 17] ± [16 17] | 0.683 ± 0.211 | 0.025764 ± 0.017900 | 0.2542 ± 0.3324 |
221
+ | MGO14 | 10.00 ± 1.83 | [29 25] ± [17 21] | 0.070 ± 0.025 | 0.012013 ± 0.007674 | 0.1417 ± 0.1850 |
222
+ | MGO15 | 9.07 ± 1.39 | [9 7] ± [10 7] | 0.037 ± 0.016 | 0.003737 ± 0.003425 | 0.7053 ± 4.3405 |
223
+ | **AVG** | **10.00 ± 1.64** | **[24 21] ± [15 15]** | **0.218 ± 0.084** | **0.013620 ± 0.009828** | **0.2583 ± 1.2852** |
224
+
225
+ | Seq. | Avg. time\* | Avg. feature count | ATE (m) | RTE 100ms (m) \*\* | SDM 0.01m (m/m) \*\*\* |
226
+ | :------ | :-------------- | :-------------------- | :---------------- | :---------------------- | :--------------------- |
227
+ | MOO01 | 7.58 ± 1.55 | [30 23] ± [21 20] | 0.281 ± 0.131 | 0.016662 ± 0.010451 | 0.2358 ± 0.3848 |
228
+ | MOO02 | 6.89 ± 1.65 | [27 21] ± [24 25] | 0.237 ± 0.101 | 0.015469 ± 0.009201 | 0.1710 ± 0.2281 |
229
+ | MOO03 | 7.33 ± 1.77 | [30 26] ± [21 24] | 0.177 ± 0.088 | 0.013521 ± 0.009276 | 0.2610 ± 0.6376 |
230
+ | MOO04 | 6.11 ± 1.35 | [22 14] ± [20 16] | 0.065 ± 0.026 | 0.009849 ± 0.005401 | 0.0889 ± 0.1166 |
231
+ | MOO05 | 7.04 ± 1.54 | [53 46] ± [20 30] | 0.018 ± 0.007 | 0.003070 ± 0.001838 | 0.0284 ± 0.0181 |
232
+ | MOO06 | 6.66 ± 1.58 | [38 35] ± [21 27] | 0.056 ± 0.028 | 0.008395 ± 0.005154 | 0.0847 ± 0.1033 |
233
+ | MOO07 | 6.38 ± 1.71 | [43 31] ± [16 21] | 0.013 ± 0.006 | 0.003422 ± 0.002073 | 0.0317 ± 0.0326 |
234
+ | MOO08 | 7.17 ± 1.65 | [25 19] ± [19 15] | 0.028 ± 0.015 | 0.011164 ± 0.006958 | 0.0939 ± 0.1051 |
235
+ | MOO09 | 8.31 ± 1.84 | [43 38] ± [19 17] | 0.004 ± 0.002 | 0.003284 ± 0.002181 | 0.0063 ± 0.0000 |
236
+ | MOO10 | 6.94 ± 1.43 | [38 21] ± [18 15] | 0.010 ± 0.005 | 0.003765 ± 0.002338 | 0.0440 ± 0.0232 |
237
+ | MOO11 | 6.66 ± 1.57 | [32 32] ± [18 22] | 0.019 ± 0.010 | 0.005102 ± 0.003253 | 0.0433 ± 0.0356 |
238
+ | MOO12 | 5.78 ± 1.40 | [32 34] ± [21 26] | 0.694 ± 0.329 | 0.008292 ± 0.007220 | 0.1275 ± 0.2512 |
239
+ | MOO13 | 6.12 ± 1.60 | [21 16] ± [22 19] | 0.501 ± 0.188 | 0.017042 ± 0.010342 | 0.1448 ± 0.1551 |
240
+ | MOO14 | 7.07 ± 1.32 | [26 19] ± [17 16] | 0.113 ± 0.058 | 0.007743 ± 0.004316 | 0.1130 ± 0.1661 |
241
+ | MOO15 | 6.51 ± 1.70 | [20 11] ± [15 6] | 0.629 ± 0.312 | 0.015308 ± 0.014007 | 0.7254 ± 0.3257 |
242
+ | MOO16 | 5.21 ± 1.08 | [23 28] ± [6 8] | 0.046 ± 0.022 | 0.001441 ± 0.001238 | 0.1750 ± 0.1788 |
243
+ | **AVG** | **6.74 ± 1.55** | **[31 26] ± [19 19]** | **0.181 ± 0.083** | **0.008971 ± 0.005953** | **0.1484 ± 0.1726** |
244
+
245
+ - \*: Average frame time. On an AMD Ryzen 7 5800X CPU. Run with pipeline fully
246
+ saturated. Real time operation frame times should be slightly lower.
247
+ - \*\*: RTE using delta of 6 frames (11ms)
248
+ - \*\*\*: The SDM metric is similar to RTE, it represents distance in meters
249
+ drifted for each meter of the dataset. The metric is implemented in the
250
+ [xrtslam-metrics](https://gitlab.freedesktop.org/mateosss/xrtslam-metrics)
251
+ project.
M_monado_datasets/MO_odyssey_plus/README.md ADDED
@@ -0,0 +1 @@
 
 
1
+ To be done.
README.md CHANGED
The diff for this file is too large to render. See raw diff