@@ -26,8 +26,17 @@ class Algorithms(str, Enum):
2626 pass
2727
2828
29- class AdultGliomaPostTreatmentAlgorithms (Algorithms ):
30- """Constants for the available adult glioma post treatment segmentation algorithms."""
29+ class AdultGliomaPreAndPostTreatmentAlgorithms (Algorithms ):
30+ """Constants for the available adult glioma pre and post treatment segmentation algorithms."""
31+
32+ BraTS25_1 = "BraTS25_1"
33+ """ BraTS25 Adult Glioma Segmentation 1st place """
34+ BraTS25_2 = "BraTS25_2"
35+ """ BraTS25 Adult Glioma Segmentation 2nd place """
36+ BraTS25_3A = "BraTS25_3A"
37+ """ BraTS25 Adult Glioma Segmentation 3rd place (tie) """
38+ BraTS25_3B = "BraTS25_3B"
39+ """ BraTS25 Adult Glioma Segmentation 3rd place (tie) """
3140
3241 BraTS24_1 = "BraTS24_1"
3342 """ BraTS24 Adult Glioma Segmentation 1st place """
@@ -48,8 +57,15 @@ class AdultGliomaPreTreatmentAlgorithms(Algorithms):
4857 """BraTS23 Adult Glioma Segmentation 3rd place (GPU only)"""
4958
5059
51- class MeningiomaAlgorithms (Algorithms ):
52- """Constants for the available meningioma segmentation algorithms."""
60+ class MeningiomaRTAlgorithms (Algorithms ):
61+ """Constants for the available meningioma segmentation - Radio Therapy algorithms."""
62+
63+ BraTS25_1 = "BraTS25_1"
64+ """ BraTS25 Meningioma Segmentation 1st place """
65+ BraTS25_2 = "BraTS25_2"
66+ """ BraTS25 Meningioma Segmentation 2nd place """
67+ BraTS25_3 = "BraTS25_3"
68+ """ BraTS25 Meningioma Segmentation 3rd place """
5369
5470 BraTS24_1 = "BraTS24_1"
5571 """ BraTS24 Meningioma Segmentation 1st place """
@@ -58,6 +74,15 @@ class MeningiomaAlgorithms(Algorithms):
5874 BraTS24_3 = "BraTS24_3"
5975 """ BraTS24 Meningioma Segmentation 3rd place """
6076
77+
78+ class MeningiomaAlgorithms (Algorithms ):
79+ """Constants for the available meningioma segmentation algorithms."""
80+
81+ BraTS25_1 = "BraTS25_1"
82+ """BraTS25 Meningioma Segmentation 1st place """
83+ BraTS25_2 = "BraTS25_2"
84+ """BraTS25 Meningioma Segmentation 2nd place """
85+
6186 BraTS23_1 = "BraTS23_1"
6287 """BraTS23 Meningioma Segmentation 1st place (GPU only)"""
6388 BraTS23_2 = "BraTS23_2"
@@ -69,6 +94,15 @@ class MeningiomaAlgorithms(Algorithms):
6994class PediatricAlgorithms (Algorithms ):
7095 """Constants for the available pediatric segmentation algorithms."""
7196
97+ BraTS25_1A = "BraTS25_1A"
98+ """ BraTS25 Pediatric Segmentation 1st place (tie)"""
99+ BraTS25_1B = "BraTS25_1B"
100+ """ BraTS25 Pediatric Segmentation 1st place (tie)"""
101+ BraTS25_1C = "BraTS25_1C"
102+ """ BraTS25 Pediatric Segmentation 1st place (tie)"""
103+ BraTS25_1D = "BraTS25_1D"
104+ """ BraTS25 Pediatric Segmentation 1st place (tie)"""
105+
72106 BraTS24_1 = "BraTS24_1"
73107 """ BraTS24 Pediatric Segmentation 1st place """
74108 BraTS24_2 = "BraTS24_2"
@@ -87,6 +121,15 @@ class PediatricAlgorithms(Algorithms):
87121class AfricaAlgorithms (Algorithms ):
88122 """Constants for the available africa segmentation algorithms."""
89123
124+ BraTS25_1 = "BraTS25_1"
125+ """ BraTS25 BraTS-SSA Segmentation 1st place """
126+ BraTS25_2A = "BraTS25_2A"
127+ """ BraTS25 BraTS-SSA Segmentation 2nd place (Tie)"""
128+ BraTS25_2B = "BraTS25_2B"
129+ """ BraTS25 BraTS-SSA Segmentation 2nd place (Tie) """
130+ BraTS25_3 = "BraTS25_3"
131+ """ BraTS25 BraTS-SSA Segmentation 3rd place """
132+
90133 BraTS24_1 = "BraTS24_1"
91134 """ BraTS24 BraTS-Africa Segmentation 1st place """
92135 BraTS24_2 = "BraTS24_2"
@@ -105,6 +148,11 @@ class AfricaAlgorithms(Algorithms):
105148class MetastasesAlgorithms (Algorithms ):
106149 """Constants for the available Inpainting algorithms."""
107150
151+ BraTS25_1 = "BraTS25_1"
152+ """BraTS25 Brain Metastases Segmentation 1st place"""
153+ BraTS25_2 = "BraTS25_2"
154+ """BraTS25 Brain Metastases Segmentation 2nd place"""
155+
108156 BraTS23_1 = "BraTS23_1"
109157 """BraTS23 Brain Metastases Segmentation 1st place (GPU only)"""
110158 BraTS23_2 = "BraTS23_2"
@@ -116,6 +164,13 @@ class MetastasesAlgorithms(Algorithms):
116164class InpaintingAlgorithms (Algorithms ):
117165 """Constants for the available BraTS Inpainting algorithms."""
118166
167+ BraTS25_1A = "BraTS25_1A"
168+ """ BraTS25 Inpainting shared 1st place (tie) """
169+ BraTS25_1B = "BraTS25_1B"
170+ """ BraTS25 Inpainting shared 1st place (tie)"""
171+ BraTS25_2 = "BraTS25_2"
172+ """ BraTS25 Inpainting 2nd place """
173+
119174 BraTS24_1 = "BraTS24_1"
120175 """ BraTS24 Inpainting 1st place """
121176 BraTS24_2 = "BraTS24_2"
@@ -132,21 +187,38 @@ class InpaintingAlgorithms(Algorithms):
132187
133188
134189class MissingMRIAlgorithms (Algorithms ):
135- """Constants for the available missing mri algorithms."""
190+ """Constants for the available missing mri algorithms."""
191+
192+ BraTS25_1 = "BraTS25_1"
193+ """ BraTS25 MissingMRI 1st place """
194+ BraTS25_2 = "BraTS25_2"
195+ """ BraTS25 MissingMRI 2nd place """
196+ BraTS25_3 = "BraTS25_3"
197+ """ BraTS25 MissingMRI 3rd place """
136198
137199 BraTS24_1 = "BraTS24_1"
138200 """ BraTS24 MissingMRI 1st place """
139201 BraTS24_2 = "BraTS24_2"
140202 """ BraTS24 MissingMRI 2nd place """
141203 BraTS24_3 = "BraTS24_3"
142204 """ BraTS24 MissingMRI 3rd place """
205+
143206 BraTS23_1 = "BraTS23_1"
144207 """ BraTS23 MissingMRI 1st place """
145208
146209
147210class GoATAlgorithms (Algorithms ):
148211 """Constants for the available missing mri algorithms."""
149212
213+ BraTS25_1A = "BraTS25_1A"
214+ """ BraTS25 Generalizability Across Tumors (BraTS-GoAT) 1st place (tie) """
215+ BraTS25_1B = "BraTS25_1B"
216+ """ BraTS25 Generalizability Across Tumors (BraTS-GoAT) 1st place (tie) """
217+ BraTS25_1C = "BraTS25_1C"
218+ """ BraTS25 Generalizability Across Tumors (BraTS-GoAT) 1st place (tie) """
219+ BraTS25_1D = "BraTS25_1D"
220+ """ BraTS25 Generalizability Across Tumors (BraTS-GoAT) 1st place (tie) """
221+
150222 BraTS24_1 = "BraTS24_1"
151223 """ BraTS24 Generalizability Across Tumors (BraTS-GoAT) 1st place (The only submission)"""
152224
@@ -161,10 +233,11 @@ class GoATAlgorithms(Algorithms):
161233ADULT_GLIOMA_PRE_TREATMENT_SEGMENTATION_ALGORITHMS = (
162234 META_DIR / "adult_glioma_pre_treatment.yml"
163235)
164- ADULT_GLIOMA_POST_TREATMENT_SEGMENTATION_ALGORITHMS = (
165- META_DIR / "adult_glioma_post_treatment .yml"
236+ ADULT_GLIOMA_PRE_AND_POST_TREATMENT_SEGMENTATION_ALGORITHMS = (
237+ META_DIR / "adult_glioma_pre_and_post_treatment .yml"
166238)
167239MENINGIOMA_SEGMENTATION_ALGORITHMS = META_DIR / "meningioma.yml"
240+ MENINGIOMA_RT_SEGMENTATION_ALGORITHMS = META_DIR / "meningioma_rt.yml"
168241PEDIATRIC_SEGMENTATION_ALGORITHMS = META_DIR / "pediatric.yml"
169242AFRICA_SEGMENTATION_ALGORITHMS = META_DIR / "africa.yml"
170243METASTASES_SEGMENTATION_ALGORITHMS = META_DIR / "metastases.yml"
0 commit comments