LuMonDepth commited on
Commit
d5317a8
·
verified ·
1 Parent(s): 3c6a107

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - depth-estimation
5
+ - image-to-image
6
+ tags:
7
+ - space
8
+ - lunar
9
+ - simulation
10
+ - computer-vision
11
+ - robotics
12
+ - benchmark
13
+ - depth
14
+ size_categories:
15
+ - 100K<n<1M
16
+ language:
17
+ - en
18
+ ---
19
+
20
+ # LunarSim: A Synthetic Dataset of the LuMon Benchmark
21
+
22
+ ## 1. Dataset Summary
23
+ The **LunarSim** dataset is a synthetic collection of paired stereo imagery and pixel-aligned depth maps, explicitly designed for evaluating Monocular Depth Estimation (MDE) on lunar surfaces.
24
+
25
+ It is a dataset introduced by our work **LuMon**, which was introduced to address the severe domain gap caused by harsh lunar shadows, textureless regolith, and the absence of atmospheric scattering. Captured within a high-fidelity Unity-based simulator, LunarSim isolates these extreme optical conditions to rigorously test the structural consistency and sim-to-real transfer capabilities of both metric and relative deep-learning architectures.
26
+
27
+ ## 2. Dataset Structure & Details
28
+ The dataset contains approximately 3,228 synchronized image pairs (totaling ~1.9 GB), extracted from continuous simulation trajectories.
29
+
30
+ ### Directory Structure
31
+ * **`left_camera/`**: Contains the input images captured from the rover's left optical camera.
32
+ * **`depth_image/`**: Contains the corresponding ground-truth depth maps.
33
+
34
+ ### Technical Specifications
35
+ * **Resolution:** All images (both RGB and Depth) are `1280x720` pixels.
36
+ * **Synchronization:** Input images and their corresponding depth maps are perfectly paired using matching UNIX timestamps in their filenames (e.g., `left_1736612498.png` corresponds directly to `depth_1736612498.png`).
37
+ * **Depth Format (Important):** The depth maps are saved as **8-bit Grayscale PNGs** (`mode="L"` in PIL/OpenCV). Pixel values are integers ranging from `0` to `255`. Note that because this specific simulation split lacks an absolute metric scale, these 8-bit values represent **relative (normalized) depth** rather than absolute metric distances in meters.
38
+
39
+ ## Citation
40
+ This dataset is a subset of the **LuMon Benchmark** suite, accepted at the **CVPR 2026 AI4Space Workshop**. If you use this dataset in your research, please cite:
41
+
42
+ ```bibtex
43
+ @inproceedings{sekmen2026lumon,
44
+ title={LuMon: A Comprehensive Benchmark and Development Suite with Novel Datasets for Lunar Monocular Depth Estimation},
45
+ author={Aytac Sekmen and Fatih Gunes and Furkan Horoz and Umut Isik and Alp Ozaydin and Altay Topaloglu and Umutcan Ustundas and Alp Yeni and Ersin Soken and Erol Sahin and Gokberk Cinbis and Sinan Kalkan},
46
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops},
47
+ year={2026}
48
+ }