bugreator commited on
Commit
9c0e002
1 Parent(s): 7dd42bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -3,4 +3,14 @@ language:
3
  - en
4
  tags:
5
  - robotics
6
- ---
 
 
 
 
 
 
 
 
 
 
 
3
  - en
4
  tags:
5
  - robotics
6
+ ---
7
+
8
+ There are 11 scenes contained in the dataset has 11 scenes contained which are folder 1 to folder 11. Each scene folder contains several video folders represents each recorded video under that scene. Each video folder contains a RGB folder, depth folder, point cloud folder and ground truth folder. If you want to use this EgoPAT3Dv2 dataset as we do, you need to generate HDF5 file on your own with the script we provided(about 500GB since huggingface doesn't support that large file):
9
+
10
+ 1. Download all of these scene folders. Extract each video folder from video zip files in the scene folder using unzip command and delete all useless files inside.
11
+
12
+ 2. To use RGB modality, you need to create a new separate folder which has the same hierarchy as the scene-video-rgb structure. Put the previously extracted RGB folders for each scene each video into the same place as the original one. For example, color folder in ***"1/1.1/color"*** should be put into ***"RGB_file/1/1.1"*** as ***"RGB_file/1/1.1/color"***
13
+
14
+ 3. Run script make_RGB_dataset.py
15
+
16
+ Then you can use the provided RGBDataset tool to load dataset and create the dataloader.