Views
No views yet
Folder layout
.
├─ images/ # RGB frames (.jpg/.png). Filenames are globally unique.
├─ annotations/ # Binary masks (.png/.jpg). Filenames match images 1‑to‑1.
└─ manifest.csv # Provenance rows and any missing‑pair notes.annotations/<FILENAME> is the mask for images/<FILENAME> (same filename, different folder).__ separators, e.g.ride_68496_8ef98b_20240716023032_517__1.jpg
ride_68496_8ef98b_20240716023032_517__1.png # corresponding mask.png or .jpg depending on source. If your pipeline requires PNG, convert on the fly in your dataloader.{0, 255}. You can binarize via mask = (mask > 127).astype(np.uint8).1from pathlib import Path
2from PIL import Image
3from torch.utils.data import Dataset
4
5class TraversabilityDataset(Dataset):
6 def __init__(self, root):
7 root = Path(root)
8 self.img_dir = root / "images"
9 self.msk_dir = root / "annotations"
10 self.items = sorted([p for p in self.img_dir.iterdir() if p.is_file()])
11 def __len__(self):
12 return len(self.items)
13 def __getitem__(self, idx):
14 ip = self.items[idx]
15 mp = self.msk_dir / ip.name
16 return Image.open(ip).convert("RGB"), Image.open(mp).convert("L")train/val/test splits, please add a split column to a copy of manifest.csv and contribute it back.LICENSE for details.GeNIE: A Generalizable Navigation System for In-the-Wild Environments
Available at: https://arxiv.org/abs/2506.17960
Contains the SAM-TP traversability dataset and evaluation methodology.
@article{wang2025genie,
title = {GeNIE: A Generalizable Navigation System for In-the-Wild Environments},
author = {Wang, Jiaming and et al.},
journal = {arXiv preprint arXiv:2506.17960},
year = {2025},
url = {https://arxiv.org/abs/2506.17960}
}@misc{sam_tp_dataset,
title = {SAM‑TP Traversability Dataset},
howpublished = {Hugging Face Datasets},
year = {2025},
note = {URL: https://huggingface.co/datasets/jamiewjm/sam-tp}
}