File size: 10,950 Bytes
6f90376
 
31af064
 
 
 
 
6f90376
 
 
 
 
 
 
 
 
31af064
15b5091
 
 
 
 
 
 
 
 
6f90376
132dc27
6f90376
 
 
 
 
22bc3ef
715d847
 
 
 
 
22bc3ef
 
 
 
f7f21b1
22bc3ef
 
6f90376
 
 
 
 
 
 
 
 
 
 
 
7d8ed3a
6f90376
7d8ed3a
6f90376
 
38a23e5
6f90376
 
 
38a23e5
 
6f90376
 
 
 
 
 
 
 
7d8ed3a
38a23e5
 
 
 
 
c9c4290
 
6f90376
38a23e5
 
 
6f90376
15b5091
6f90376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15b5091
 
6f90376
 
 
 
 
 
 
 
 
 
15b5091
6f90376
 
 
 
 
 
 
 
 
 
 
 
25d11e5
6f90376
 
 
 
25d11e5
6f90376
 
 
 
 
 
 
 
 
 
 
 
15b5091
6f90376
15b5091
 
 
 
6f90376
 
 
 
 
15b5091
6f90376
15b5091
 
 
 
 
6f90376
 
 
 
 
15b5091
 
6f90376
15b5091
 
 
 
6f90376
15b5091
 
 
 
 
6f90376
 
 
 
 
 
 
31af064
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
---
license: cc-by-nc-4.0
size_categories:
- 1M<n<10M
task_categories:
- image-segmentation
- mask-generation
tags:
- lesion-segmentation
- lesion-tracking
- real-time
- cine-MRI
- radiotherapy
challenge_homepage: https://trackrad2025.grand-challenge.org/trackrad2025/
challenge_repository: https://github.com/LMUK-RADONC-PHYS-RES/trackrad2025/
---

### **The dataset 🗃️**
Overall, the TrackRAD2025 challenge provides over **2.8 million unlabeled** sagittal cine-MRI frames from 477 individual patients, and over **10,000 labeled** sagittal cine-MRI frames 
(+8000 from frames with multiple observers) from 108 individual patients. Precisely,
a cohort of **477** unlabeled and **108** manually labeled patients has been prepared for participants. For each patient, 2D sagittal cine MRI data (time-resolved sequence of 2D images) 
has been acquired during the course of radiotherapy treatments at 0.35 T (ViewRay MRIdian) or 1.5 T (Elekta Unity) MRI-linacs from six international centers. 
Tracking targets (typically tumors) in the thorax, abdomen and pelvis were included as these can be affected by motion and reflect the most often treated anatomies on MRI-linacs. 
The **training set**, which comprises the 477 unlabeled cases plus 50 labeled cases was publicly released. 
Participants can further subdivide this dataset locally into training and validation. The remaining 58 labeled cases building the **preliminary and final testing set** is only 
accessible for evaluation via submission to the challenge. A couple of years after the challenge is closed, the testing set data is also going to be uploaded to the same location as the training set.

Detailed information about the dataset are provided in the preprint https://arxiv.org/abs/2503.19119 under revision in Medical Physics.

The challenge website can be found here: https://trackrad2025.grand-challenge.org/trackrad2025/

#### **Data location**

The training (and validation) dataset can be downloaded from this page starting from March 15th, 2025. To download all files at once, one can use the huggingface_hub python library:
```
from huggingface_hub import snapshot_download

snapshot_download(repo_id="LMUK-RADONC-PHYS-RES/TrackRAD2025", repo_type="dataset", local_dir="/local_dir_where_to_download_dataset/")
```
To download for instance only the labeled set, one can use the huggingface_hub python library with the allow_patters option:
```
from huggingface_hub import snapshot_download

snapshot_download(repo_id="LMUK-RADONC-PHYS-RES/TrackRAD2025", repo_type="dataset", local_dir="/local_dir_where_to_download_dataset/", allow_patterns="trackrad2025_labeled_training_data/*")
```


The preliminary testing and final testing dataset are not provided to participants, but are accessible by uploading algorithms for evaluation.

#### **Data structure**

Each patient's data, both for the training and for the testing dataset, is organized using the following folder structure:

```
dataset/
|-- <patient>/
|   |-- field-strength.json
|   |-- frame-rate.json
|   |-- frame-rate<scan>.json -> additional scans (for some of the unlabeled patients)
|   |-- scanned-region.json
|   |-- scanned-region<scan>.json -> additional scans (for some of the unlabeled patients)
|   |-- images/
|   |   |-- <patient_id>_frames.mha
|   |   `-- <patient_id>_frames<scan>.mha -> additional scans (for some of the unlabeled patients)
|   `-- targets/
|       |-- <patient_id>_first_label.mha 
|       |-- <patient_id>_labels.mha
|       `-- <patient_id>_labels<observer>.mha -> additional observers (for some of the labeled patients)
|-- D_001/ -> this is a labeled patient
|   |-- field-strength.json -> 0.35
|   |-- frame-rate.json -> 4.0
|   |-- scanned-region.json -> "thorax"
|   |-- images/
|   |   `-- D_001_frames.mha
|   `-- targets/
|       |-- D_001_first_label.mha 
|       `-- D_001_labels.mha
|-- F_002/ -> this is an unlabeled patient
|   |-- field-strength.json -> 1.5 --> same for all scans of one patient
|   |-- frame-rate.json -> 1.65 -> frame rate of first scan
|   |-- frame-rate2.json -> 1.3 -> frame rate of second scan
|   |-- frame-rate3.json -> 1.65 -> frame rate of third scan
|   |-- scanned-region.json -> "abdomen" -> anatomic region of first scan
|   |-- scanned-region2.json -> "pelvis" -> anatomic region of second scan
|   |-- scanned-region3.json -> "abdomen" -> anatomic region of third scan
|   `-- images/
|      |-- F_002_frames.mha -> first scan 
|      |-- F_002_frames2.mha -> second scan
|      `-- F_002_frames3.mha -> third scan from the same patient
|-- F_003/
`-- ...
```

Please note that the dataset folder structure does not match the interfaces that submissions need to implement one-to-one. For details regarding submission requirements, please read the corresponding page.

#### **Data license**

Data is released under CC-BY-NC (Attribution-NonCommercial). 

#### **Data description**

This challenge provides 2D+t sagittal cine MRI data collected at six international centers:

- Amsterdam University Medical Center, Amsterdam
- Catharina Hospital, Eindhoven
- GenesisCare, Sydney
- LMU University Hospital, Munich
- Sichuan Cancer Center, Chengdu
- University Medical Center Utrecht, Utrecht

For anonymization purposes, the provenance of the data is not provided, and each center is indicated with letters from A to F. One of the centers also provided cine data 
with an updated MRI sequence for gating at a 1.5 T MRI-linac, this data is indicated with the letter X.

##### *Training set*

| 0.35 T MRI-linac | A       | E      | Total  |
|------------------|---------|--------|--------|
| Unlabeled        | 219     | 34     |  253   |
| Labeled          | 25      | -      |  25    |				

| 1.5 T MRI-linac  | B       | C      | F      | Total  |
|------------------|---------|--------|--------|--------|
| Unlabeled        | 63      | 60     | 101    |  224   |
| Labeled          | 15      | 10     | -      |  25    |

For training, centers A, B and C provided both unlabeled and manually labeled data while centers E and F provided solely unlabeled data. 


##### *Preliminary testing set*

| 0.35 T MRI-linac | A       |  Total |
|------------------|---------|--------|
| Labeled          | 2       |   2    |				

| 1.5 T MRI-linac  | B       | C      | Total  |
|------------------|---------|--------|--------|
| Labeled          | 3       | 3      |  6     |

##### *Final testing set*
| 0.35 T MRI-linac | A       |  D     | Total  |
|------------------|---------|--------|--------|
| Labeled          | 5       |  20    |  25    |				

| 1.5 T MRI-linac  | B       | C      |  X     | Total  |
|------------------|---------|--------|--------|--------|
| Labeled          | 8       | 11     |  6     |  25    |

For preliminary testing and final testing centers A, B, C, D and X provided manually labeled data.

##### *Data protocols*

###### *Unlabelled data protocol*

For the unlabeled training set data, sagittal cine MRI from one or multiple radiotherapy MRI-linac treatment fractions and from MRI-linac simulations were included. 

Due to machine design, when the gantry of the 0.35 T moves, the image quality is degraded.
The 0.35 T unlabeled data therefore includes frames with degraded image quality due to gantry rotations, which participants are free to exclude using a method of their choice. 
All frames from the 1.5 T MRI-linac were acquired during treatments only and do not present degradation due to gantry rotations by design. 
The 1.5 T unlabeled data however can present temporal jumps and large changes in contrast within one cine MRI due to treatment interruptions, which during export are combined in a single scan.

###### *Labelled data protocol*

To avoid degraded images during evaluation, labeled frames for the 0.35 T MRI-linac were either chosen from simulation cine MRIs prior to treatment start or, when taken from treatments, a manual selection was performed to avoid periods of gantry rotation.

Labeled frames from the 1.5 T MRI-linac were visually inspected and selected to avoid temporal jumps due to treatment interruptions.

Human observers have generated the reference labels both for the training and testing sets. 
For dataset A, two observers (a medical student and a dentistry student) labeled the cine MRI frames using a [labeling tool](https://github.com/LMUK-RADONC-PHYS-RES/contouring-tool) developed specifically for the challenge. 
For dataset B, a medical physics researcher (assistant professor) with more than 10 years experience in radiotherapy used the same in-house labeling tool to delineate the frames. 
For dataset C, two radiation oncologists independently labeled the cine MRI frames using itk-snap. For dataset D, 4 radiation oncologists and one medical physicist have independently 
labeled the cine MRI frames using software provided by the 0.35 T MRI-linac vendor. 

For all labeled data, a medical physics doctoral student with 4 years experience in tumor tracking then reviewed and if necessary corrected all labels used in this challenge using the in-house tool. 

##### *Data acquisition and pre-processing* 

All images were acquired using the clinically adopted imaging protocols of the respective centers for each anatomical site and reflect typical images found in daily clinical routine. 
The cine-MRI sequences used at the 0.35 T and 1.5 T MRI-linacs are standardized, which ensures uniformity of the data for a given field strength. 

At the centers using the 0.35 T MRI-linac, the 2D cine-MRIs were acquired in sagittal orientation with the patient in treatment position in the MRI-linac bore. 
During treatment simulation or delivery, the patients performed breath holds to increase the duty cycle of the gated radiation delivery. 
The breath-holds are followed by periods of regular breathing. The sequence was a 2D-balanced steady-state free precession (bSSFP) at 4 Hz or 8 Hz with a slice thickness of 5, 7 or 10 mm and pixel 
spacing of 2.4x2.4 or 3.5x3.5 mm2.

At the centers using the 1.5 T MRI-linac, the 2D cine-MRIs were acquired in either interleaved sagittal and coronal or interleaved sagittal, coronal and axial orientations 
with the patient in treatment position in the MRI-linac. 
For the challenge, only the sagittal plane has been considered. During treatment simulation or delivery, some patients performed breath holds to increase the duty cycle of 
the gated radiation delivery, while others breathed freely. The breath-holds are followed by periods of regular breathing. The sequence was a balanced fast field echo (bFFE) sequence 
at 1.3 Hz to 3.5 Hz in the sagittal orientation with a slice thickness of 5, 7 or 8 mm and pixel spacing of 1.0x1.0  to 1.7x1.7 mm2.

The following pre-processing steps were performed on the data:

- Conversion from proprietary formats to .mha
- Anonymization
- Reshaping and orientation correction
- Resampling to 1x1 mm2 in-plane pixel spacing
- Conversion to 16-bit unsigned integer