AnonRes commited on
Commit
7a1d5ce
·
verified ·
1 Parent(s): aeabbc1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -59
README.md CHANGED
@@ -1,60 +1,63 @@
1
- ---
2
- license: cc-by-4.0
3
- task_categories:
4
- - "image-feature-extraction"
5
- pretty_name: "The OpenMind Dataset"
6
- tags:
7
- - 3d
8
- - image
9
- ---
10
-
11
- # The OpenMind Dataset: A large-scale Head-And-Neck 3D MRI Dataset for self-supervised learning
12
- ![OpenMind Dataset](./assets/OpenMindDataset.png)
13
-
14
- ## Description
15
-
16
- The OpenMind Dataset is a large-scale 3D MRI dataset of the head and neck region featuring 114k MRI Images. Its purpose is to provide access of large amounts of 3D medical imaging data to accelerate the development of self-supervised learning methods for 3D medical imaging. This data was pooled from exactly 800 datasets from the OpenNeuro platform and provides 23 different MRI modalities/techniques from over 30 different scanners, representing a highly variable pre-training dataset.
17
-
18
- ## Additional Features
19
- Aside from the 3D MRI Images, we provide stratified metadata for each of the 114k images, where made available in the original dataset in a unified format.
20
- Moreover, we provide a) anonymization masks, which delineate defaced regions, allowing to take them into account when developing reconstruction based pre-training methods and b) we provide anatomy masks, which delineate areas with anatomy, e.g. for cases where images were brain extracted. Similarly to the a) this allows to either ignore regions outside of this during reconstruction and allows sampling regions with anatomy, avoiding empty regions for contrastive learning approaches.
21
-
22
- ## Dataset structure
23
- The dataset is structured akin to the original OpenNeuro datasets, following a modified BIDS format. Each dataset is stored in a separate folder, with each folder containing respective subjects, which contain their sessions and for each session the respective MRIs, as well as anonymization and anatomy masks. Instead of differentiating by imaging type, we just provide all images in a flat folder
24
- The common metadata is stored outside of the dataset folder in a separate metadata file.
25
-
26
- ```
27
- -- Readme.md // this readme
28
- -- openmind_dataset
29
- |-- metadata.csv
30
- |-- data
31
- |-- ds_000001
32
- |-- sub-01
33
- |-- ses-01
34
- |-- sub-01_ses-01_T1w.nii.gz
35
- |-- sub-01_ses-01_T1w_anon_mask.nii.gz
36
- |-- sub-01_ses-01_T1w_anatomy_mask.nii.gz
37
- |-- sub-01_ses-01_T2w.nii.gz
38
- |-- sub-01_ses-01_T2w_anon_mask.nii.gz
39
- |-- sub-01_ses-01_T2w_anatomy_mask.nii.gz
40
- ...
41
- ...
42
- ...
43
- |-- ds_xxxxxx
44
- ...
45
- ```
46
-
47
- Available meta-data tags (Name [Percent of images with this metadata]) within the metadata.csv file are:
48
-
49
- - MR Modalitiy/Technique [100%]
50
- - Scanner Manufacturer [100%]
51
- - Scanner Model [100%]
52
- - Scanner Field Strength [100%]
53
- - Age [70%]
54
- - Sex [77.4%]
55
- - Weight [1.5%]
56
- - BMI [15.7%]
57
- - Race [11.7%]
58
- - Handedness (right/left/ambidexterous) [35.4%]
59
- - Health Status (healthy/ill) [26.4%]
 
 
 
60
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - "image-feature-extraction"
5
+ pretty_name: "The OpenMind Dataset"
6
+ tags:
7
+ - 3d
8
+ - image
9
+ ---
10
+
11
+ # The OpenMind Dataset: A large-scale Head-And-Neck 3D MRI Dataset for self-supervised learning
12
+ ![OpenMind Dataset](./assets/OpenMindDataset.png)
13
+
14
+ ## Description
15
+
16
+ The OpenMind Dataset is a large-scale 3D MRI dataset of the head and neck region featuring 114k MRI Images. Its purpose is to provide access of large amounts of 3D medical imaging data to accelerate the development of self-supervised learning methods for 3D medical imaging. This data was pooled from exactly 800 datasets from the OpenNeuro platform and provides 23 different MRI modalities/techniques from over 30 different scanners, representing a highly variable pre-training dataset.
17
+
18
+ ## Additional Features
19
+ Aside from the 3D MRI Images, we provide stratified metadata for each of the 114k images when made available by the original dataset in a unified format.
20
+ Moreover, we provide a) `deface_masks`, which delineate anonymized/defaced regions, allowing to take them into account when developing reconstruction based pre-training methods and b) `anatomy_masks`, which delineate areas which holds anatomy, e.g. for cases where images were brain extracted. Similarly to the `deface_masks` this allows to either ignore regions outside of this during reconstruction and allows sampling regions with anatomy, avoiding empty regions for contrastive learning approaches.
21
+
22
+ ## Dataset structure
23
+ The dataset is structured akin to the original OpenNeuro datasets, following a modified BIDS format, exemplified below.
24
+ We recommend using the `openneuro_metadata.csv` which holds the relative paths from the root directory to the images and their associated masks as well as metadata.
25
+
26
+ ```
27
+ -- Readme.md // this readme
28
+ -- openneuro_metadata.csv // metadata file containing the relative paths to the images and their metadata
29
+ -- openmind_dataset
30
+ |-- openneuro_metadata.csv # Contains the relative paths to the images and their metadata
31
+ |-- OpenMind
32
+ |-- ds_000001
33
+ |-- sub-01
34
+ |-- anat
35
+ |-- sub-01_ses-01_T1w.nii.gz # 3D Image in Nifti format
36
+ |-- sub-01_T1w__Data # Associated Folder holding Masks to Image
37
+ |-- deface_mask.nii.gz # deface mask
38
+ \-- fb_mask.nii.gz # anatomy mask
39
+ |-- sub-01_inplaneT2.nii.gz
40
+ \-- sub-01_inplaneT2__Data # Associated Folder holding Masks to Image
41
+ |-- deface_mask.nii.gz
42
+ \-- fb_mask.nii.gz
43
+ ...
44
+ ...
45
+ ...
46
+ |-- ds_xxxxxx
47
+ ...
48
+ ```
49
+
50
+ Available meta-data tags (Name [Percent of images with this metadata]) within the metadata.csv file are:
51
+
52
+ - MR Modalitiy/Technique [100%]
53
+ - Scanner Manufacturer [100%]
54
+ - Scanner Model [100%]
55
+ - Scanner Field Strength [100%]
56
+ - Age [70%]
57
+ - Sex [77.4%]
58
+ - Weight [1.5%]
59
+ - BMI [15.7%]
60
+ - Race [11.7%]
61
+ - Handedness (right/left/ambidexterous) [35.4%]
62
+ - Health Status (healthy/ill) [26.4%]
63