Datasets:
Metadata-only usability correction
Browse filesUpdate dataset card, Croissant metadata, release summary, and repository-relative scene manifest paths. Dataset scene files are unchanged.
README.md
CHANGED
|
@@ -1,12 +1,81 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
| 6 |
-
- `depth_label.npz`
|
| 7 |
-
- `correspondences.txt`
|
| 8 |
-
- `camera.cyl`
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
- `
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "IH-Depth"
|
| 3 |
+
license: "cc-by-4.0"
|
| 4 |
+
task_categories:
|
| 5 |
+
- depth-estimation
|
| 6 |
+
tags:
|
| 7 |
+
- mlcroissant
|
| 8 |
+
- croissant
|
| 9 |
+
- lwir
|
| 10 |
+
- lidar
|
| 11 |
+
- hyperspectral-imagery
|
| 12 |
+
- metric-depth-estimation
|
| 13 |
+
- off-road
|
| 14 |
+
size_categories:
|
| 15 |
+
- n<1K
|
| 16 |
+
---
|
| 17 |
|
| 18 |
+
# IH-Depth
|
| 19 |
|
| 20 |
+
IH-Depth v0 is a curated LWIR/LWHSI-LiDAR benchmark derived from the Invisible Headlights dataset. It contains 51 included off-road scenes with sparse LiDAR-projected metric depth labels, per-scene cylindrical camera geometry, correspondence files, and release manifests.
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
+
## Repository Status
|
| 23 |
+
|
| 24 |
+
- Hugging Face repository: `SemilleroCV/ih-depth`
|
| 25 |
+
- Version: `v0` (`0.0.0` for Croissant semver metadata)
|
| 26 |
+
- Published: `2026-05-07`
|
| 27 |
+
- License: CC BY 4.0
|
| 28 |
+
- Total scenes in frozen manifest: `306`
|
| 29 |
+
- Included scenes: `51`
|
| 30 |
+
- Deferred scenes: `203`
|
| 31 |
+
- Excluded scenes: `52`
|
| 32 |
+
- Canonical included-scene triples: `51`
|
| 33 |
+
|
| 34 |
+
## Files
|
| 35 |
+
|
| 36 |
+
Top-level metadata files:
|
| 37 |
+
|
| 38 |
+
- `scenes_manifest.csv`: one row per included scene, with repository-relative paths to the canonical files.
|
| 39 |
+
- `frozen_manifest_included_51.csv`: full frozen-manifest rows for the 51 included scenes.
|
| 40 |
+
- `07_frozen_manifest_v0.csv`: frozen release manifest for all 306 candidate scenes.
|
| 41 |
+
- `release_summary.json`: machine-readable release counts and metadata-correction scope.
|
| 42 |
+
- `ih-depth.croissant.json`: Croissant metadata describing this repository layout.
|
| 43 |
+
|
| 44 |
+
Canonical per-scene files:
|
| 45 |
+
|
| 46 |
+
- `depth_label.npz`: sparse metric depth labels projected from LiDAR into LWHSI image coordinates.
|
| 47 |
+
- `correspondences.txt`: image-to-geometry correspondences used by the registration pipeline.
|
| 48 |
+
- `camera.cyl`: cylindrical camera geometry for the scene.
|
| 49 |
+
|
| 50 |
+
Some scenes also include source or diagnostic assets inherited from release preparation, such as `.bsq`, `.hdr`, `.las`, `.png`, `.npy`, `*_label.npz`, and `*_all.cyl` files. The canonical benchmark interface is the 51 rows in `scenes_manifest.csv`.
|
| 51 |
+
|
| 52 |
+
## Minimal Usage
|
| 53 |
+
|
| 54 |
+
```python
|
| 55 |
+
from huggingface_hub import hf_hub_download
|
| 56 |
+
import pandas as pd
|
| 57 |
+
import numpy as np
|
| 58 |
+
|
| 59 |
+
repo_id = "SemilleroCV/ih-depth"
|
| 60 |
+
manifest_path = hf_hub_download(repo_id, "scenes_manifest.csv", repo_type="dataset")
|
| 61 |
+
scenes = pd.read_csv(manifest_path)
|
| 62 |
+
row = scenes.iloc[0]
|
| 63 |
+
|
| 64 |
+
depth_path = hf_hub_download(repo_id, row.depth_label_path, repo_type="dataset")
|
| 65 |
+
depth_npz = np.load(depth_path)
|
| 66 |
+
print(depth_npz.files)
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
The `depth_label.npz` internal array names should be inspected with `np.load(...).files`, because downstream code should not assume undocumented internal key names.
|
| 70 |
+
|
| 71 |
+
## Evaluation Scope
|
| 72 |
+
|
| 73 |
+
IH-Depth provides sparse LiDAR-projected depth labels, not dense ground-truth depth. Metrics should be computed only at valid projected LiDAR pixels. The dataset is intended for research on monocular metric depth estimation in off-road longwave infrared hyperspectral imagery and should not be treated as a general-purpose RGB, indoor, on-road, aerial, or safety-certification benchmark.
|
| 74 |
+
|
| 75 |
+
## Provenance
|
| 76 |
+
|
| 77 |
+
IH-Depth is derived from the Invisible Headlights dataset and from the registration, filtering, cleanup, and validation pipeline documented by the release manifests. Scene inclusion was frozen in `07_frozen_manifest_v0.csv`.
|
| 78 |
+
|
| 79 |
+
## Responsible Use
|
| 80 |
+
|
| 81 |
+
The dataset should not be used as the sole basis for safety-critical autonomous navigation, obstacle avoidance, or deployment decisions. Report the sparse-label nature, off-road scope, registration process, and evaluation protocol when using the dataset.
|