Commit ·
4dfa860
1
Parent(s): 34c686e
update
Browse files
README.md
CHANGED
|
@@ -122,22 +122,22 @@ Each example follows the same top-level schema. Some fields are split-dependent:
|
|
| 122 |
Example record:
|
| 123 |
```json
|
| 124 |
{
|
| 125 |
-
"image_left":
|
| 126 |
-
"image_right":
|
| 127 |
-
"timestamp":
|
| 128 |
|
| 129 |
-
"gyro": [
|
| 130 |
-
"accel": [
|
| 131 |
|
| 132 |
-
"sync_dt": [
|
| 133 |
|
| 134 |
-
"position": [
|
| 135 |
-
"orientation": [
|
| 136 |
}
|
| 137 |
```
|
| 138 |
|
| 139 |
Notes:
|
| 140 |
-
- `gyro` is in rad/s and `accel` is in m/s^2.
|
| 141 |
- `sync_dt = [dt_right, dt_imu]` are time offsets (in seconds) relative to `timestamp` (left image):
|
| 142 |
- `dt_right = t_right - t_left`
|
| 143 |
- `dt_imu = t_imu - t_left`
|
|
@@ -149,12 +149,9 @@ Each split contains 100 randomly sampled, synchronized frames:
|
|
| 149 |
- Start/end trimmed to remove initialization artifacts
|
| 150 |
|
| 151 |
Synchronization constraints:
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
| $\\lvert t_{left} - t_{right} \\rvert$ | $\\le 5\\ \\mathrm{ms}$ |
|
| 156 |
-
| $\\lvert t_{left} - t_{imu} \\rvert$ | $\\le 5\\ \\mathrm{ms}$ |
|
| 157 |
-
| $\\lvert t_{left} - t_{odom} \\rvert$ (VIO only) | $\\le 5\\ \\mathrm{ms}$ |
|
| 158 |
|
| 159 |
### Missing Data Handling
|
| 160 |
|
|
|
|
| 122 |
Example record:
|
| 123 |
```json
|
| 124 |
{
|
| 125 |
+
"image_left": Image,
|
| 126 |
+
"image_right": Image,
|
| 127 |
+
"timestamp": float,
|
| 128 |
|
| 129 |
+
"gyro": [wx, wy, wz],
|
| 130 |
+
"accel": [ax, ay, az],
|
| 131 |
|
| 132 |
+
"sync_dt": [dt_right, dt_imu],
|
| 133 |
|
| 134 |
+
"position": [x, y, z],
|
| 135 |
+
"orientation": [qx, qy, qz, qw]
|
| 136 |
}
|
| 137 |
```
|
| 138 |
|
| 139 |
Notes:
|
| 140 |
+
- `gyro` is in $\mathrm{rad/s}$ and `accel` is in $\mathrm{m/s^2}$.
|
| 141 |
- `sync_dt = [dt_right, dt_imu]` are time offsets (in seconds) relative to `timestamp` (left image):
|
| 142 |
- `dt_right = t_right - t_left`
|
| 143 |
- `dt_imu = t_imu - t_left`
|
|
|
|
| 149 |
- Start/end trimmed to remove initialization artifacts
|
| 150 |
|
| 151 |
Synchronization constraints:
|
| 152 |
+
- $\lvert t_{left} - t_{right} \rvert \le 5\ \mathrm{ms}$
|
| 153 |
+
- $\lvert t_{left} - t_{imu} \rvert \le 5\ \mathrm{ms}$
|
| 154 |
+
- $\lvert t_{left} - t_{odom} \rvert \le 5\ \mathrm{ms}$ (VIO only)
|
|
|
|
|
|
|
|
|
|
| 155 |
|
| 156 |
### Missing Data Handling
|
| 157 |
|