Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
image
imagewidth (px)
1.05k
1.07k
End of preview. Expand in Data Studio

The D2P dataset

The D2P dataset is a dataset based on the Depth2Pose monocular depth estimation benchmark, a pose-based evaluation of MDEs without ground-truth depth. The dataset contains challenging scenes outside the distribution of common training data, together with a simple and extensible evaluation framework, presented on the github page. The scenes are divided into two categories: statues and vegetation. Undistorted images and reconstructions in standard colmap format is provided for each scene, together with a list of image pairs used for the evaluation.

paper (coming later) | github | webpage

Dataset Structure

d2p_dataset_example                           
β”œβ”€β”€ statues/                           
β”‚   β”œβ”€β”€ scene1/                          
β”‚   β”‚   β”œβ”€β”€ images/                       
β”‚   β”‚   β”‚   β”œβ”€β”€ img1.png
β”‚   β”‚   β”‚   β”œβ”€β”€ img2.png   
β”‚   β”‚   β”‚   └── ... 
β”‚   β”‚   β”œβ”€β”€ sparse/
β”‚   β”‚   β”‚   β”œβ”€β”€ cameras.txt
β”‚   β”‚   β”‚   β”œβ”€β”€ frames.txt
β”‚   β”‚   β”‚   β”œβ”€β”€ images.txt
β”‚   β”‚   β”‚   β”œβ”€β”€ points3D.txt
β”‚   β”‚   β”‚   └── rigs.txt
β”‚   β”‚   β”œβ”€β”€ scene1_image_list.txt
β”‚   β”‚   └── scene1_image_pairs.txt
β”‚   β”œβ”€β”€ scene2/ 
β”‚   β”‚   └── ... 
β”‚   └── ... 
└──  vegetation/

Dataset Fields

Each scene contains:

  • images/: RGB images
  • sparse/: COLMAP reconstruction files:
    • camera parameters
    • frames
    • image poses
    • 3D points
    • rigs
  • scene1_image_list.txt: List of all images used for the benchmark, found in the images/ folder
  • scene1_image_pairs.txt: List of all image pairs used for the benchmark, for which realtive pose is evaluated

Direct Use

Benchmarking monocular depth estimators. For the current leaderboard, see the Depth2Pose webpage

Load with πŸ€— Datasets

from datasets import load_dataset

ds = load_dataset("floodgab/Depth2Pose")
print(ds["validation"][0])

Loading Example

To download the Depth2Pose dataset

from huggingface_hub import snapshot_download

path = snapshot_download("floodgab/depth2pose_example")

Citation

If you use Depth2Pose in your research or find our work helpful, please cite

@misc{depth2pose,
  title={{Depth2Pose}: A Pose-Based Benchmark for Monocular Depth Estimation without Ground-Truth Depth},
  author={Kocur, Viktor and Aung, Sithu and Flood, Gabrielle and Ding, Yaqing and Bujnak, Lukas and Sattler, Torsten and Kukelova, Zuzana},
  year={2026},
} 
Downloads last month
15