Datasets:
File size: 5,187 Bytes
41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 41233c8 31126c9 d8fbe95 31126c9 41233c8 727aa54 a835a33 727aa54 | 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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | ---
license: cc-by-4.0
task_categories:
- image-segmentation
- image-classification
language:
- en
tags:
- medical
- radiology
- chest-ct
- anatomy
- segmentation
- ct-scan
- projection
pretty_name: RadGenome-Anatomy
size_categories:
- 10K<n<100K
configs:
- config_name: default
data_files:
- split: train
path: data/train/*.parquet
- split: validation
path: data/validation/*.parquet
dataset_info:
features:
- name: volume_id
dtype: string
- name: split
dtype: string
- name: image_pa
dtype: image
- name: image_ll
dtype: image
---
# RadGenome-Anatomy
**RadGenome-Anatomy** is a large-scale chest radiograph anatomy segmentation dataset
constructed from the [RadGenome-ChestCT](https://huggingface.co/datasets/RadGenome/RadGenome-ChestCT) corpus
(originally based on [CT-RATE](https://huggingface.co/datasets/ibrahimhamamci/CT-RATE)).
It contains **25,692 volumetric studies** (24,128 train / 1,564 validation), yielding paired
postero-anterior (PA) and lateral (LL) projection images at **384 × 384** resolution.
Across the two radiographic views, the dataset provides **10,790,646 fine-grained anatomy masks**
over **210 canonical anatomy classes** and **513,860 region masks** over **10 anatomical groups**,
for a total of **11,304,506 binary mask instances**.
Each row represents one CT study and contains its PA and LL projection images.
---
## Dataset Summary
| Property | Value |
|---|---|
| **Studies** | 25,692 total (24,128 train / 1,564 val) |
| **Views per study** | 2 (PA + LL) |
| **Image resolution** | 384 × 384 |
| **Anatomy classes** | 210 structures (4-level hierarchy) |
| **Region classes** | 10 body-system groups |
| **Anatomy masks** | 10,790,646 (5,395,323 PA + 5,395,323 LL) |
| **Region masks** | 513,860 (256,930 PA + 256,930 LL) |
| **License** | CC-BY-4.0 |
| **Source** | RadGenome-ChestCT / CT-RATE |
### Splits
| Split | Studies | PA projections | LL projections | Anatomy masks | Region masks |
|---|---|---|---|---|---|
| train | 24,128 | 24,129 | 24,129 | 10,133,770 | 482,580 |
| validation | 1,564 | 1,564 | 1,564 | 656,876 | 31,280 |
| **total** | **25,692** | **25,693** | **25,693** | **10,790,646** | **513,860** |
---
## Dataset Structure
### Data Fields
| Column | Type | Description |
|---|---|---|
| `volume_id` | `str` | Unique study identifier, e.g. `train_1_a_1`. |
| `split` | `str` | Dataset split: `train` or `validation`. |
| `image_pa` | `Image` | PA (posteroanterior, front) chest projection image (JPEG, 384×384). |
| `image_ll` | `Image` | LL (lateral, side) chest projection image (JPEG, 384×384). |
### Anatomy Label Universe
The dataset defines **210 canonical anatomy classes** organized as a four-level hierarchy:
*body system → organ → substructure → canonical label*. At the top level, classes are grouped
into **10 body systems**, with a highly non-uniform per-system class count:
| Body system | # classes | Example structures |
|---|---|---|
| Skeletal | 93 | ribs (1–12 L/R), thoracic vertebrae (T1–T12), cervical/lumbar vertebrae, sternum, clavicles, scapulae, humerus, femur |
| Abdominal | 42 | liver (with segments), spleen, pancreas, kidneys, gallbladder, stomach, intestine |
| Mediastinal | 25 | aorta, IVC/SVC, carotid/subclavian arteries, brachiocephalic vessels, iliac/renal vessels |
| Cardiac | 11 | heart, atria (L/R), ventricles (L/R), myocardium, ascending aorta, left auricle, heart tissue |
| Pulmonary | 15 | left/right lung, upper/middle/lower lobes (L/R), lung nodule, tumor, effusion, pulmonary vein, pulmonary embolism |
| Airway | 6 | trachea, bronchi, larynx (glottis, supraglottis), cricopharyngeal inlet |
| Endocrine | 8 | thyroid (L/R + gland), adrenal glands (L/R), thymus |
| Esophageal | 2 | esophagus structures |
| Breast | 3 | breast structures |
| Neural / soft tissue | 5 | spinal cord, skin, muscle |
These same 10 body systems also serve as the **region-mask** label set (10 classes/view).
The full ordered list of canonical labels is in [`label_universe.json`](./label_universe.json) at the repo root.
Use it to map labels to fixed class indices for consistent multi-label training.
---
## Usage
### Load with 🤗 Datasets
```python
from datasets import load_dataset
ds = load_dataset("EvidenceAIResearch/radgenome-anatomy")
print(ds)
```
### Access images
```python
from PIL import Image
import io
row = ds["train"][0]
pa_img = Image.open(io.BytesIO(row["image_pa"]["bytes"]))
ll_img = Image.open(io.BytesIO(row["image_ll"]["bytes"]))
```
## License
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) — derived from CT-RATE.
Commercial use is not permitted without prior permission from the original data providers.
See the [original dataset terms](https://huggingface.co/datasets/RadGenome/RadGenome-ChestCT) for full conditions.
## Citation
```
@article{ye2026radgenome,
title={RadGenome-Anatomy: A Large-Scale Anatomy-Labeled Chest Radiograph Dataset via Physically Grounded Volumetric Projection},
author={Ye, Shuchang and Meng, Mingyuan and Wang, Hao and Naseem, Usman and Kim, Jinman},
journal={arXiv preprint arXiv:2605.17368},
year={2026}
}
```
|