|
6 | 6 | "source": [ |
7 | 7 | "# Warning\n", |
8 | 8 | "\n", |
9 | | - "This tutorial is a work in progress, it does not cover all the functionalities yet. However, it will give you a good overview how you can generate tumor segmentations with BraTS Toolkit.\n" |
| 9 | + "This tutorial is a work in progress, it does not cover all the functionalities yet. However, it will give you a good overview of how you can generate tumor segmentations with BraTS Toolkit.\n" |
10 | 10 | ] |
11 | 11 | }, |
12 | 12 | { |
|
28 | 28 | "2. **Import** of raw data (cMRI)\n", |
29 | 29 | " \n", |
30 | 30 | " \n", |
31 | | - "3. **Preprocessing via BrainLes preprocessig package** instead of vanilla preprocessing pipeline from BraTS Toolkit. BraTS challenge algorithms expect preprocessed files (co-registered, skullstripped in SRI-24 space)\n", |
| 31 | + "3. **Preprocessing via BrainLes preprocessing package** instead of vanilla preprocessing pipeline from BraTS Toolkit. BraTS challenge algorithms expect preprocessed files (co-registered, skullstripped in SRI-24 space)\n", |
32 | 32 | " \n", |
33 | 33 | " \n", |
34 | 34 | "4. **Segmentation with BraTS Toolkit** \n", |
35 | 35 | " \n", |
36 | 36 | " \n", |
37 | | - "5. **Fusion** of generated segementations \n", |
| 37 | + "5. **Fusion** of generated segmentations \n", |
38 | 38 | "\n" |
39 | 39 | ] |
40 | 40 | }, |
|
55 | 55 | "optional (but recommended):\n", |
56 | 56 | "\n", |
57 | 57 | "- CUDA drivers\n", |
58 | | - "- a GPU that is supported (each algorithms supports different set of GPUs)\n", |
| 58 | + "- a GPU that is supported (each algorithm supports different set of GPUs)\n", |
59 | 59 | "<!-- TODO specify -->\n", |
60 | 60 | "\n", |
61 | | - "Run the subsequent cell to check CUDA availability, your python and docker version. " |
| 61 | + "Run the subsequent cell to check CUDA availability, your Python and docker version. " |
62 | 62 | ] |
63 | 63 | }, |
64 | 64 | { |
|
206 | 206 | "source": [ |
207 | 207 | "## 2. Import raw input data\n", |
208 | 208 | "\n", |
209 | | - "Raw imput data require\n", |
| 209 | + "Raw input data require\n", |
210 | 210 | "- exam with skull and 4 sequences (T1, T1c, T2, T2-FLAIR), only one file each (in total 4 files) \n", |
211 | 211 | " - file names must end with \"*t1.nii.gz\", \"*t1c.nii.gz\", \"*t2.nii.gz\" and \"*fla.nii.gz\"\n", |
212 | 212 | " - [Nifti \".nii.gz\"](https://brainder.org/2012/09/23/the-nifti-file-format/) file type \n", |
213 | 213 | "- each exam (4 files) needs to be places in an individual folder within the data folder \n", |
214 | 214 | "```<this repository>/BraTS-Toolkit/data/```. \n", |
215 | 215 | "\n", |
216 | | - "The structure is shown using two example exams:\n", |
| 216 | + "The structure is shown using two examples exams:\n", |
217 | 217 | "```\n", |
218 | 218 | "BraTS-Toolkit\n", |
219 | 219 | "├── data\n", |
|
297 | 297 | "source": [ |
298 | 298 | "## 3. Preprocessing\n", |
299 | 299 | "\n", |
300 | | - "BraTS challenge algorithms expect co-registered, skullstripped files in SRI-24 space, to achieve this preprocessing is required.\n", |
| 300 | + "BraTS challenge algorithms expect co-registered, skull-stripped files in SRI-24 space, to achieve this preprocessing is required.\n", |
301 | 301 | "Instead of using the vanilla preprocessing pipeline from BraTS Toolkit, we recommend using the new [BrainLes preprocessing package](https://github.com/BrainLesion/preprocessing/tree/main/brainles_preprocessing).\n" |
302 | 302 | ] |
303 | 303 | }, |
|
0 commit comments