IlyaInd commited on
Commit
207252c
·
verified ·
1 Parent(s): 01a28d5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +109 -0
README.md ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pretty_name: WideDepth train
5
+ task_categories:
6
+ - depth-estimation
7
+ task_ids:
8
+ - stereo-depth-estimation
9
+ tags:
10
+ - autonomous-driving
11
+ - fisheye
12
+ - equirectangular
13
+ - lidar
14
+ - disparity
15
+ - depth-estimation
16
+ size_categories:
17
+ - 10K<n<100K
18
+ license: cc-by-nc-4.0
19
+ ---
20
+
21
+ # WideDepth train
22
+
23
+ ## Dataset Summary
24
+ WideDepth train is an outdoor multi-view fisheye training dataset for depth/disparity learning and domain adaptation.
25
+
26
+ The dataset accompanies the paper *WideDepth: Millimeter-Accurate Benchmark for Fisheye Depth Estimation*, accepted to ICRA 2026.
27
+
28
+ It provides synchronized frames across:
29
+ - left fisheye RGB
30
+ - right fisheye RGB
31
+ - upper equirect RGB
32
+ - lower virtual equirect RGB
33
+ - equirect disparity
34
+ - fisheye depth
35
+
36
+ This subset was captured outdoors with a handheld rig (fisheye stereo + LiDAR), then rectified/warped to equirect views and paired with sparse LiDAR-derived labels.
37
+
38
+ ## Dataset Structure
39
+ Expected layout:
40
+
41
+ ```text
42
+ WideDepth_train/
43
+ left_fisheye/
44
+ right_fisheye/
45
+ equirect_up/
46
+ equirect_down_virt/
47
+ disp_equirect/
48
+ depth_fisheye/
49
+ manifests/
50
+ ```
51
+
52
+ All modality folders use synchronized zero-padded numeric names (for example `00000.png`, `00001.png`, ...).
53
+
54
+ Content by folder:
55
+ - `left_fisheye`, `right_fisheye`, `equirect_up`, `equirect_down_virt`: RGB images (`uint8`, 3-channel)
56
+ - `disp_equirect`: disparity map image files (typically scaled by `100`)
57
+ - `depth_fisheye`: projected sparse depth map image files in left fisheye frame (typically depth in `mm`)
58
+ - `manifests`: filtering/reindexing outputs and mapping files
59
+
60
+ ## Source Data and Processing
61
+ High-level pipeline:
62
+ 1. Outdoor handheld capture with a synchronized fisheye stereo + LiDAR rig.
63
+ 2. Stereo rectification and warping to equirectangular views.
64
+ 3. Projection of merged LiDAR points to the camera frame to generate sparse depth and derived disparity targets.
65
+ 4. Release preparation with optional RGB anonymization (face/plate blur) and synchronized frame indexing across modalities.
66
+
67
+ Projection model:
68
+ - Equirectangular warping and LiDAR-to-image projection are performed with the **Double Sphere** camera model using calibrated intrinsics/extrinsics.
69
+
70
+ Capture setup (train release):
71
+ - Two ZED X One fisheye cameras in a vertical stereo configuration.
72
+ - Camera lens FoV is approximately 180° horizontal and 120° vertical; calibration was done at `1920x1080`.
73
+ - Two Livox Mid-360 LiDARs with partially overlapping FoVs.
74
+ - Typical sensor rates: cameras at 30 Hz and LiDARs at 10 Hz, aligned by timestamp in ROS.
75
+ - Data was captured outdoors (city areas, parks, streets), daylight, mostly cloudy conditions.
76
+
77
+ Notes:
78
+ - Reported train-set sparse projected depth density is approximately 8.1%.
79
+ - This release is intended as training data; create your own deterministic train/val/test split if needed.
80
+
81
+ ## Limitations and Privacy
82
+ - `depth_fisheye` is sparse and can be noisy, especially on thin/far structures.
83
+ - Depth overlays can show local drift due to sparsity, timing offsets, and calibration residuals.
84
+ - Disparity/depth are image-encoded and require proper scaling in loaders.
85
+
86
+ Anonymization in this release is **best-effort**:
87
+ - All published RGB images in this release were processed with automated face/plate blurring.
88
+ - Automated blur reduces identifiable content but may miss cases.
89
+ - Verify privacy compliance for your jurisdiction and use case before redistribution/deployment.
90
+
91
+ ## Links
92
+ - Paper: https://arxiv.org/abs/2605.24074
93
+ - WideDepth benchmark dataset: https://huggingface.co/datasets/IlyaInd/WideDepth
94
+ - WideDepth code repository: https://github.com/IlyaInd/WideDepth
95
+
96
+ ## License
97
+ This release uses **Creative Commons Attribution-NonCommercial 4.0 International** (`cc-by-nc-4.0`).
98
+
99
+ You must provide attribution and may not use the dataset for commercial purposes.
100
+
101
+ ## Citation
102
+ ```bibtex
103
+ @article{indyk2026widedepth,
104
+ title={WideDepth: Millimeter-Accurate Benchmark for Fisheye Depth Estimation},
105
+ author={Indyk, Ilia and Penshin, Ignat and Sosin, Ivan and Monastyrny, Maxim and Valenkov, Aleksei and Makarov, Ilya},
106
+ journal={arXiv preprint arXiv:2605.24074},
107
+ year={2026}
108
+ }
109
+ ```