Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,21 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
---
|
4 |
|
5 |
## Dataset Summary
|
6 |
|
7 |
This is a rectified video subset of the full [Stereo4D dataset](https://stereo4d.github.io/), designed to support research in 4D motion understanding from real-world stereo videos. It provides 60° field-of-view, 512×512 perspective crops from the **left eye** of VR180 stereo video clips. These are extracted from long scenes with per-frame depth and 3D trajectory annotations available in the full dataset.
|
8 |
|
9 |
-
This dataset is intended to be used alongside the
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
{}
|
3 |
+
---
|
4 |
|
5 |
## Dataset Summary
|
6 |
|
7 |
This is a rectified video subset of the full [Stereo4D dataset](https://stereo4d.github.io/), designed to support research in 4D motion understanding from real-world stereo videos. It provides 60° field-of-view, 512×512 perspective crops from the **left eye** of VR180 stereo video clips. These are extracted from long scenes with per-frame depth and 3D trajectory annotations available in the full dataset.
|
8 |
|
9 |
+
This dataset is intended to be used alongside the Stereo4D dataset annotations which can be found [here](https://console.cloud.google.com/storage/browser/stereo4d;tab=objects?inv=1&invt=AbwGbA&prefix=&forceOnObjectsSortingFiltering=false).
|
10 |
+
|
11 |
+
## Download
|
12 |
+
|
13 |
+
```bash
|
14 |
+
git clone https://huggingface.co/datasets/KevinMathew/stereo4d-lefteye-perspective
|
15 |
+
cd stereo4d-lefteye-perspective
|
16 |
+
git lfs pull --include="*.tar.part_*,test_mp4s.tar"
|
17 |
+
cat train_mp4s.tar.part_* > train_mp4s.tar
|
18 |
+
mkdir train_frames test_frames
|
19 |
+
tar -tvf train_mp4s.tar | head -n 10
|
20 |
+
tar -tvf test_mp4s.tar | head -n 10
|
21 |
+
```
|