https://github.com/fepegar/miccai-educational-challenge-2020
My submission to the MICCAI Educational Challenge 2020.
https://github.com/fepegar/miccai-educational-challenge-2020
augmentation cnn medical-images pytorch torchio tutorial
Last synced: 9 months ago
JSON representation
My submission to the MICCAI Educational Challenge 2020.
- Host: GitHub
- URL: https://github.com/fepegar/miccai-educational-challenge-2020
- Owner: fepegar
- License: mit
- Created: 2020-08-10T22:20:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-25T18:44:37.000Z (about 5 years ago)
- Last Synced: 2025-01-31T19:28:05.832Z (10 months ago)
- Topics: augmentation, cnn, medical-images, pytorch, torchio, tutorial
- Language: Jupyter Notebook
- Homepage:
- Size: 37.4 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
*This is my submission to the [MICCAI Educational Challenge 2020](https://miccai-sb.github.io/challenge.html).*
*You can run the notebook on [Google Colab](https://colab.research.google.com/github/fepegar/miccai-educational-challenge-2020/blob/master/Data_preprocessing_and_augmentation_using_TorchIO_a_tutorial.ipynb).*
---
# Data preprocessing and augmentation using TorchIO: a tutorial
Preprocessing and augmentation are always overlooked in papers, but these are extremely important and therefore the software and parameters used should be correctly reported. Most importantly, papers will be more easily reproducible if researchers can share the tools they use for these tasks.

Transforms are callable Python objects that take data and modify it. In the context of deep learning for medical images, they can be used to pre- or post-process the images, or for data augmentation.
[TorchIO](https://torchio.readthedocs.io/index.html) transforms support 4D tensors (and therefore also 2D and 3D), so it can be used to process most types of medical images: X-rays, CT, 4D ultrasound, structural MRI, diffusion MRI, functional MRI, PET, SPECT, multispectral, RGB, histology...
In this tutorial, we will go through most of the transforms and show some usage examples, including a typical composition of transforms for training and testing.
Some important concepts of medical imaging are also explained, so it will be helpful for students, researchers or clinicians who are getting started in the field.