Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# Infinigen Stereo Video Dataset (InfinigenSV)
|
| 6 |
+
|
| 7 |
+
## Dataset Summary
|
| 8 |
+
|
| 9 |
+
**InfinigenSV** is a synthetic stereo video dataset constructed using the photorealistic 3D environment engine Infinigen.
|
| 10 |
+
It contains high-resolution stereo video sequences across diverse natural outdoor scenes such as forests, mountains, rivers, and rocky terrains,
|
| 11 |
+
simulating real-world complexity with controlled camera motion and lighting.
|
| 12 |
+
|
| 13 |
+
The dataset is designed to support research on stereo video matching, temporal consistency, and 3D scene understanding, especially under challenging conditions like textureless surfaces, fine geometry, and dynamic parallax.
|
| 14 |
+
|
| 15 |
+
Ground-truth depth maps, along with full camera intrinsics/extrinsics, are provided per frame.
|
| 16 |
+
|
| 17 |
+
## Dataset Structure
|
| 18 |
+
|
| 19 |
+
The folder structure of the dataset is organized by scene categories and sequences:
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
/data/datasets/InfinigenSV/
|
| 23 |
+
βββ train/
|
| 24 |
+
β βββ 2873f0f/
|
| 25 |
+
β βββ frames/
|
| 26 |
+
β β βββ Image/
|
| 27 |
+
β βββ camera_0/
|
| 28 |
+
β β β βββ Image_0_0_0001_0.npy
|
| 29 |
+
β β β βββ Image_0_0_0002_0.npy
|
| 30 |
+
β βββ camera_1/
|
| 31 |
+
β β βββ Depth/
|
| 32 |
+
β βββ camera_0/
|
| 33 |
+
β β β βββ Depth_0_0_0001_0.npy
|
| 34 |
+
β β β βββ Depth_0_0_0002_0.npy
|
| 35 |
+
β βββ camera_1/
|
| 36 |
+
β β βββ camview/
|
| 37 |
+
β βββ camera_0/
|
| 38 |
+
β β β βββ camview_0_0_0001_0.npz
|
| 39 |
+
β β β βββ camview_0_0_0002_0.npz
|
| 40 |
+
β βββ camera_1/
|
| 41 |
+
βββ ...
|