Datasets:
File size: 4,243 Bytes
a38e57c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | ---
license: cc-by-4.0
task_categories:
- image-segmentation
language:
- en
size_categories:
- n<1K
tags:
- medical-imaging
- spine
- ct
- segmentation
- vertebra
- lstv
- tltv
- verse
pretty_name: "VerSeFusion: Re-fused VerSe 2019+2020 with VERIDAH corrections"
---
# VerSeFusion-Sample
A re-fused, PIR-canonical version of the VerSe 2019 and VerSe 2020 vertebra
segmentation challenges, with VERIDAH (Möller 2026) label corrections applied
for thoracolumbar transitional vertebrae.
## Dataset stats
- **Total scans:** 10
- **Total patients:** 10
- **Splits:** training=1, validation=4, test=5
- **Source:** VerSe 2019 + VerSe 2020 (combined) with VERIDAH corrections
- **Canonical orientation:** PIR (axis 0 = P, axis 1 = I, axis 2 = R)
- **VERIDAH-corrected subjects:** 0
## Orientation
Every scan in this dataset has been reoriented to a single canonical frame:
- **axis 0** increases toward **P** (posterior — i.e., anterior → posterior)
- **axis 1** increases toward **I** (inferior — i.e., superior → inferior; this is the spine axis)
- **axis 2** increases toward **R** (right — i.e., left → right)
This is verified end-to-end: see `orientation_audit.json` for the
per-subject report. Rendering conventions in `previews/`:
- **Coronal:** head at top, patient's right at viewer's right
- **Axial:** anterior at top, patient's right at viewer's right
- **Sagittal:** head at top, anterior at left
## Structure
```
gregoryschwingmdphd/VerseFusion-Sample/
├── README.md
├── LICENSE
├── splits.csv # series_id → split (training/validation/test)
├── orientation_audit.json # per-subject orientation verification
├── scans/
│ └── <series_id>/
│ ├── ct.nii.gz # CT volume, HU values, PIR-oriented
│ ├── mask.nii.gz # vertebra labels (uint8), PIR-oriented
│ └── meta.json # per-scan provenance
├── corrections/
│ └── veridah_manifest.json # which subjects had labels corrected
└── previews/ # optional QC renders
└── <series_id>.png
```
## Label schema
| Label | Anatomy | | Label | Anatomy |
|-------|---------|-|-------|---------|
| 1–7 | C1–C7 | | 20 | L1 |
| 8 | T1 | | 21 | L2 |
| 9 | T2 | | 22 | L3 |
| 10 | T3 | | 23 | L4 |
| 11 | T4 | | 24 | L5 |
| 12 | T5 | | 25 | L6 (supernumerary lumbar) |
| 13 | T6 | | 26 | sacrum (variably annotated) |
| 14 | T7 | | 27 | coccyx |
| 15 | T8 | | 28 | T13 (supernumerary thoracic) |
| 16 | T9 | | | |
| 17 | T10 | | | |
| 18 | T11 | | | |
| 19 | T12 | | | |
## Loading example
```python
import nibabel as nib
ct = nib.load("scans/verse001/ct.nii.gz")
msk = nib.load("scans/verse001/mask.nii.gz")
# Both are guaranteed to be PIR-oriented:
assert nib.aff2axcodes(ct.affine) == ('P', 'I', 'R')
assert nib.aff2axcodes(msk.affine) == ('P', 'I', 'R')
```
## Citation
If you use this dataset, please cite the original VerSe challenges and the
VERIDAH corrections paper:
```bibtex
@article{sekuboyina2021verse,
title={VerSe: A vertebrae labelling and segmentation benchmark for multi-detector CT images},
author={Sekuboyina, A. and others},
journal={Medical Image Analysis},
year={2021}
}
@article{loffler2020verse2020,
title={A vertebral segmentation dataset with fracture grading},
author={Löffler, M.T. and others},
journal={Radiology: Artificial Intelligence},
year={2020}
}
@article{moller2026veridah,
title={VERIDAH: Vertebral identification and transitional anomaly detection},
author={Möller, H. and others},
year={2026}
}
```
## Acknowledgments
VerSe challenge data: Technical University Munich. VERIDAH corrections:
H. Möller et al. (2026).
## Note: this is a sample
This is a 10-scan sample from the full dataset, chosen as the most-completely-labeled scans (highest unique-vertebra-label count, with VERIDAH-corrected subjects prioritized to showcase the thoracolumbar transitional-vertebra corrections).
For the full VerSeFusion dataset, see: https://huggingface.co/datasets/gregoryschwingmdphd/VerseFusion
|