The aim of T1ify is to transform non T1 weighted MR images to have a similar contrast profile to an adult T1 image.
The main goal is to not only improve rgistration results by increasing mutual information, but also to allow for datasets lacking T1 images to have cortical reconstruction in freesurfer like cortical surface pipelines.
T1ify is a learning project as much as a goal oriented project to create a really useful tool. Feel free to join if you want to learn by doing and convert those other modalities to T1s! Join our channel for brainstorming & discussions.
This is an open learning project meaning that anyone can join and contribute! However it may be useful to be familiar with at least some of the following:
- Neuroimaging
- Python
- Deep Learning
Left: T2 -- T1 -- T1 predicted; Right:T1 -- T2 predicted -- T2
We are using git submodules for external tools which we store inside the bin
directory. After you forked and cloned the repository, do
cd T1ify
git submodule init
git submodule update
cd bin/volume
source compile.sh
- Generating MRI Images of Multi-Contrast. Leveraging CycleGans to translate T1-weighted MRI images to T2-weighted MRI images. (Blog post by Joey Mach)
- Attention-Aware Discrimination for MR-to-CT Image Translation Using Cycle-Consistent Generative Adversarial Networks. (Paper by Kearny et al.)
- Synthesized b0 for diffusion distortion correction (Synb0-DisCo). (Paper by Schillig et al.)
- Image Synthesis in Multi-Contrast MRI with Conditional Generative Adversarial Networks. (Paper by Dar et al.)
- DeepFCD: Detect focal cortical dysplasias using a generative modelling approach (GitHub repo with inspirations, code not yet; David et al.)
GAN based on pix2pix, output example here - Visualizing 150000 butterflies from the Natural History Museum (Blog post by Kleineberg)
- mri2mri: convert one type of MRI to another (GitHub repo by Rokem et al)
- Generative Adversarial Networks for Image-to-Image Translation on Multi-Contrast MR Images - A Comparison of CycleGAN and UNIT. (Welander et al.); GitHub repo: simontomaskarlsson / GAN-MRI.
- "Oldify for Brains": what will your brain look like in 40 years? Neurohackademy project: deep learing and GANs (GitHub repo by Durieux)
- Implementation of deep learning framework -- Unet, using Keras, The architecture was inspired by U-Net: Convolutional Networks for Biomedical Image Segmentation. (GitHub repo by Zhixu)
- How to load nib to PyTorch