TimeEscaper commited on
Commit
ecdac4d
·
verified ·
1 Parent(s): 41aa751

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -3
README.md CHANGED
@@ -1,3 +1,20 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ *EgoWalk Trajectories*
5
+
6
+ This is the extracted version of the EgoWalk dataset, obtained from the [raw one](https://huggingface.co/datasets/EgoWalk/traverse).
7
+ Please check the [API for this dataset](https://github.com/egowalk/egowalk-dataset) for the basic usage.
8
+
9
+ **Data format**
10
+ The data is mainly organized in following directories:
11
+ - *data*: includes csv with the main per-frame annotations - video name, frame index, UTC timestamp, camera pose (may be `null` due to odometry failures, see next sections)
12
+ - *video*: includes video files that are referenced in *data*. Lossy encoding is used for RGB channel, lossless - is for Depth channel.
13
+ - *annotations*: includes language goal annotations for the selected frames. We release to versions of annotations: *normal* - the main version, and *brief* - the version with slightly more brief sentences.
14
+ - *meta*: includes additional metadata, namely, approximate camera heights, camera params, list of trajectories, etc.
15
+
16
+ **Notes on the odometry**
17
+ [ZED SDK](https://www.stereolabs.com/en-ru/developers/release) was used to calculate the odometry from the raw data. This odometry is still imperfect, and sometimes may result in odometry failures of two kinds:
18
+ - `nulls`: odometry method failed to compute the pose at this particular timestamp
19
+ - Reinitialization: due two large amount of sequential failures odometry was re-initialized in the middle of trajectory, and re-initialized pose starts in zero.
20
+ API includes some mechanisms to process such cases, such as [cutters](https://github.com/egowalk/egowalk-dataset/blob/main/egowalk_dataset/datasets/gnm/cutters.py).