Skip to content

Diffuision MRI reconstruction, MRI Visualization, MRI Analyzation, Machine Learning

License

Notifications You must be signed in to change notification settings

brainhack-school2020/BHS_Project_dMRI

Repository files navigation

Static Badge

Diffusion MRI Processing Protocol and Reconstruction

An Introduction to Python-based MRI Data Analysis: mini-project III/VIII

EJZ (Polytechnique Montreal, Sainte-Justine Hosptical Research Center (UdeM) )

Summary

This project is about diffusion magnetic resonance imaging (dMRI) data processing and analysis. It mainly consists of three parts: brain dMR data preprocessing, dMRI reconstruction, data visualization and left and right hemispherical preprocessed MR images classification.

With reproducibility being a primary concern, this project was completed by using open-source softwares/tools (Python, FSL, DIPYPE...) and dataset (dHCP and PRIME). With this project, you can have a general idea of dMRI processing and analysis. It can be used as a simple warmup project for new students in neuroscience (dMRI brain imaging).

Project Definition

Background

Low blood sugar is a common problem in both children and adults. Existing research showed that it may lead to serious both transient and permanent structural abnormalities on brains. Magnetic resonance imaging (MRI), specially diffusion MRI, has a higher in vivo sensitivity to lesions in soft tissues compared to other imaging modalities, and has potential to identify and quantify brain structure changes. Some of these changes are not appraient enough,even for experienced experts. Machine learning is a useful method to discover potential features.

Currently, there are some open-source softwares to reconstruct and analyze diffusion MRI data. However, only using these tools, one, like me as a new student in this field, may get confused about operations and principle behind them. This seriously stops people to reach their long-term goals in their diffusion MRI project.

Thus, I began this project to preprocess dMRI data, reconstruct diffusion MR images and do some analysis by using machine learning. The goals are as following:

  • Data Preprocesssing Get preprocessed diffusion MR images from raw MRI data;
  • Image Reconstruction Reconstruct diffusion tensor images from the preprocessed data;
  • Machine Learning Classsification By using machine learning, randomly choose left or right hemispheres on each slice of MRI images preprocessed above and find method to give results that which part it is belonging to (right or left?).

Tools

The "Diffusion MRI reconstruction project" will rely on the following tools:

  • Python3: coding language used to complete this project (Python2 also needed for some special packages).
  • Github and git: to organize this project and make version control
  • Jupyter Notebook: to file code, visualizations and results
  • Markdown, to structure the text in README and Jupyter Notebook
  • Visual Studio Code: to be code editor
  • Nipype: to use FSL command preprocessing image data
  • DIPY: to be used as diffusion tensor imaging (DTI) fitting and denoising
  • matplotlib, plotly and ipython widgets: data visualization
  • Linux (Ubuntu 20.04)

Data

This project used data from online dataset offered by:

  1. The Developing Human Connectome Project. It consists of over 800 neonatal scans and over 250 fetal scans and can be used for data analysis after image reconstruction.
  2. PRIME: used this dataset to reconstruct diffusion Images. This also can be downloaded here directly.
  3. Since during preprocessing, we used EPI data with two opposite phase-encoding directions to correct distortions, other data can also be used as the source data if it meets this requirement.
  4. Data used for analysis is generated from image data after preprocessing. The final data can be found in this github project folder.

Deliverables

At the end of this project, we will have: Jupyter notebook will be developed, allowing diffusion MR reconstruction and data analyzation. Weekly Deliverables are as following:

Methods and Results

  1. Data Visualization (see gif figure below):
  • 3D volume slices image
    1. Show different slices of images;
    2. Change observe view point;
    3. Play animation;
  • Interactive widgets use to show preprocessed results
    1. Select different maps;
    2. Select slices;
    3. Select maximum diffusion sthrength;
    4. Display title
  • Interactive widgets use to show reconstruction results;
    1. Play different maps;
    2. Select slices;
    3. Slect maximum diffusion sthrength;
    4. Display give title.
  • Interactive widgets 2 use to show preprocessed results
    1. play different maps;
    2. Select slices;
    3. Select maximum diffusion sthrength;
    4. Display title.
1
2. Preprocessing
  • Method

    1. Load diffusion weighted image data and set data path;
    2. Denoise data by using MP-PCA method of DIPY;
    3. Correct distortion by using FSL TOPUP;
    4. Extract brain and create brain mask by using FST bet;
    5. Correct head movement artifacts by using FSL EDDY;
    6. Extract maps from 4D data and show results.
  • Results

1
  1. DTI reconstruction
  • Method

    1. DIPY was used to fit tensor model;
    2. Different maps were saved;
    3. Colored diffusion map was coded and saved;
    4. Show maps
  • Results

1
  1. Left and right hemispheres classification
  • Method

    1. 80 Slices of brain images (40 left hemisphere slice and 40 right hemisphere) were extracted and transfered to brain parts classification;
    2. Left hemisphere brain image and right hemisphere brain iamge were taged with 0 and 1 specifically;
    3. Slice number was treated as one of features used for classification;
    4. Diffusino strength of each slice hemisphere was calculated as the second feature of classification;
    5. Total effictive voxel of eahc slice hemisphere was calculated as the third feature for classification;
    6. Dataset was splitted into train dataset (70%) and test dataset (30%);
    7. Use KNN to classify
  • Classification Reports

1

Progress overview

Since May 11, this project goes well and three goals of this project have been reached. This is just to let me be familiar with steps and tools of diffusion MRI processing. Next, I will combine different processing methods into this project. Specifically, I would like to look deep into DTI model fitting and try to replace it by a new model created by myself.

Things learned through this project

  1. Python
    • FSL, Nipype.interfaces, DIPY
    • matplotlib, plotly, ipywidgets
    • Function definition and calling
  2. Markdown
    • Format this README file
    • Insert figures and animation
    • LaTex to edit mathematical equations
  3. Github
    • Version control
    • Project organization
  4. BIDS
  5. Jupter notebook
  6. Found and learnt to use some small but useful tools
    • Peek for GIF making
    • Gedit to edit code or markdown
  7. Medical file format (NII) and data structure (BIDS)
  8. Statistical method and machine learning

Conclusion

This project started with medical imaging data format, then preprocessed the diffusion weighted images, which includes MP-PCA denoising, FSL TOPUP distortion correction and head movement correction. After this, DTI images were reconstructed from these preprocessed images successfully. Additionally, a dataset for left and right hemispheres classification was generated from these preprocessed images. By using the KNN method, classification accuracy of 92% was reached. In the future, self-made models, instead of DTI model, will be used to reconstruct diffusion images. Machine learning methods will also be used to classify potential changes of brain microstructures.

Acknowledgement

Thanks to Brainhack Summer School 2020 and all instructors. Specifically, I would like to thank my instructors Noor, Greg and Agah for your advice, instruction and encouragement. I would also like to thank all the summer school students, just because of you, I know how wonderful the neuroscience world is and how active the neuroscience group is! This work was completed in Magic Lab, TransMedTech Institute, CHU Saint-Justine Hospital and NeoroPoly Lab at Polytechnique.

References

  1. FMRIB Software Library v6.0
  2. MARKDOWN Syntax
  3. RDadarwal (2020)
  4. Nipype interface FSL
  5. Plotly Python Open Source Graphing Library
  6. Jupyter Widgets
  7. Scikit-learn Classifier comparison

About

Diffuision MRI reconstruction, MRI Visualization, MRI Analyzation, Machine Learning

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages