AhmadMM2024 commited on
Commit
c0b699a
·
verified ·
1 Parent(s): 3808db2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +130 -3
README.md CHANGED
@@ -15,13 +15,13 @@ dataset_info:
15
  dtype: int32
16
  splits:
17
  - name: '244'
18
- num_bytes: 1287692805.0
19
  num_examples: 51891
20
  - name: '512'
21
- num_bytes: 4640495381.0
22
  num_examples: 51891
23
  download_size: 5872933096
24
- dataset_size: 5928188186.0
25
  configs:
26
  - config_name: default
27
  data_files:
@@ -29,4 +29,131 @@ configs:
29
  path: data/244-*
30
  - split: '512'
31
  path: data/512-*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  dtype: int32
16
  splits:
17
  - name: '244'
18
+ num_bytes: 1287692805
19
  num_examples: 51891
20
  - name: '512'
21
+ num_bytes: 4640495381
22
  num_examples: 51891
23
  download_size: 5872933096
24
+ dataset_size: 5928188186
25
  configs:
26
  - config_name: default
27
  data_files:
 
29
  path: data/244-*
30
  - split: '512'
31
  path: data/512-*
32
+ license: cc-by-sa-4.0
33
+ task_categories:
34
+ - image-segmentation
35
+ language:
36
+ - en
37
+ tags:
38
+ - medical
39
+ - xray
40
+ - nii
41
+ - ct
42
+ - MRI
43
+ pretty_name: Mini Medical Segmentation Decathlon
44
+ size_categories:
45
+ - 100K<n<1M
46
  ---
47
+ # Processed and Reduced Medical Segmentation Decathlon Dataset
48
+ <!-- Provide a quick summary of the dataset. -->
49
+ The miniMSD dataset is a medical image segmentation benchmark covering 10 human organs.
50
+ It is derived from the [Medical Segmentation Decathlon (MSD)](http://medicaldecathlon.com) by converting volumetric scans
51
+ from NIfTI (NII) format into serialised 2D RGB images, alongside their corresponding segmentation masks.
52
+ The dataset is provided in multiple resolution variants (244, 512), enabling easier use,
53
+ off-the-shelf accessibility, and flexible experimentation.
54
+
55
+ ## Dataset Details
56
+ The dataset covers 10 human body organs, listed below.
57
+ Each organ includes up to 40 volumes, with each volume consisting of a variable number of image slices.
58
+ Each dataset entry contains the following components: the organ type, the image, a binary mask,
59
+ a detailed (multi-class) mask, a volume ID, and a slice ID.
60
+ The image, binary mask, and detailed mask are all provided as PIL images.
61
+ The binary mask contains two labels: 0 for background and 1 for the target region.
62
+ The detailed mask contains multiple labels (0, 1, 2, 3, …), where each label corresponds to a specific
63
+ anatomical structure. The mapping of label indices to structures is provided below.
64
+
65
+ | Organ | Number of Volumes | Total Slices | Avg. Slices per Volume | % of Total Slices |
66
+ |----------------|-------------------|--------------|------------------------|-------------------|
67
+ | Prostate | 32 | 1204 | 37.625 | 1.26% |
68
+ | Heart | 20 | 2271 | 113.550 | 2.38% |
69
+ | Hippocampus | 40 | 2754 | 68.850 | 2.89% |
70
+ | HepaticVessel | 40 | 5796 | 144.900 | 6.08% |
71
+ | BrainTumour | 40 | 6200 | 155.000 | 6.51% |
72
+ | Spleen | 40 | 6964 | 174.100 | 7.31% |
73
+ | Pancreas | 40 | 7068 | 176.700 | 7.42% |
74
+ | Colon | 40 | 7344 | 183.600 | 7.71% |
75
+ | Lung | 40 | 22510 | 562.750 | 23.62% |
76
+ | Liver | 40 | 33200 | 830.000 | 34.83% |
77
+
78
+ ## Labels Mapping
79
+ ### BrainTumour
80
+ - 0: background
81
+ - 1: necrotic / non-enhancing tumor
82
+ - 2: edema
83
+ - 3: enhancing tumor
84
+
85
+ ### Heart
86
+ - 0: background
87
+ - 1: left atrium
88
+
89
+ ### Liver
90
+ - 0: background
91
+ - 1: liver
92
+ - 2: tumor
93
+
94
+ ### Hippocampus
95
+ - 0: background
96
+ - 1: anterior
97
+ - 2: posterior
98
+
99
+ ### Prostate
100
+ - 0: background
101
+ - 1: peripheral zone
102
+ - 2: transition zone
103
+
104
+ ### Lung
105
+ - 0: background
106
+ - 1: nodule
107
+
108
+ ### Pancreas
109
+ - 0: background
110
+ - 1: pancreas
111
+ - 2: tumor
112
+
113
+ ### HepaticVessel
114
+ - 0: background
115
+ - 1: vessel
116
+ - 2: tumor
117
+
118
+ ### Spleen
119
+ - 0: background
120
+ - 1: spleen
121
+
122
+ ### Colon
123
+ - 0: background
124
+ - 1: colon
125
+
126
+ ## Uses
127
+
128
+ ```python
129
+ from datasets import load_dataset
130
+ miniMSD244 = load_dataset("chehablaborg/miniMSD", split="244")
131
+
132
+ sample_id = 312
133
+ organ = miniMSD244[sample_id]["organ"]
134
+ image = miniMSD244[sample_id]["image"]
135
+ binary_mask = miniMSD244[sample_id]["binary_mask"]
136
+ classes_mask = miniMSD244[sample_id]["classes_mask"]
137
+ plt.imshow(image, cmap="grey")
138
+ plt.show()
139
+ ```
140
+
141
+ ## Citation
142
+ Please mention us in an acknowledgement [chehablab.com](https://chehablab.com) and cite the original authors of the dataset
143
+ ```bib
144
+ @misc{msd2019,
145
+ title={A large annotated medical image dataset for the development and evaluation of segmentation algorithms},
146
+ author={Amber L. Simpson and Michela Antonelli and Spyridon Bakas and Michel Bilello and Keyvan Farahani and Bram van Ginneken and Annette Kopp-Schneider and Bennett A. Landman and Geert Litjens and Bjoern Menze and Olaf Ronneberger and Ronald M. Summers and Patrick Bilic and Patrick F. Christ and Richard K. G. Do and Marc Gollub and Jennifer Golia-Pernicka and Stephan H. Heckers and William R. Jarnagin and Maureen K. McHugo and Sandy Napel and Eugene Vorontsov and Lena Maier-Hein and M. Jorge Cardoso},
147
+ year={2019},
148
+ eprint={1902.09063},
149
+ archivePrefix={arXiv},
150
+ primaryClass={cs.CV},
151
+ url={https://arxiv.org/abs/1902.09063},
152
+ }
153
+ ```
154
+
155
+ ## License
156
+ This work is licensed under a [Creative Commons CC BY SA License](http://creativecommons.org/licenses/by-sa/4.0/).
157
+ [![CC BY SA 4.0](https://licensebuttons.net/l/by-sa/4.0/88x31.png)](http://creativecommons.org/licenses/by-sa/4.0/)
158
+
159
+ [Chehab lab](https://chehablab.com) @ 2026