Predicting Alzheimers disease using 3D MRI medical images

In this project I develop a deep learning CNN model to predict Alzheimer’s disease using 3D MRI medical images of the Hippocampus region of the brain.
health
deep-learning
Author

Pranath Fernando

Published

February 6, 2022

1 Introduction

In this project I develop a deep learning model to predict Alzheimer’s disease using 3D MRI medical images. Alzheimer’s disease (AD) is a progressive neurodegenerative disorder that results in impaired neuronal (brain cell) function and eventually, cell death. For patients exhibiting early symptoms, quantifying disease progression over time can help direct therapy and disease management.

The code for this project is available at this github repository.

A radiological study via MRI exam is currently one of the most advanced methods to quantify the disease. In particular, the measurement of hippocampal volume has proven useful to diagnose and track progression in several brain disorders, most notably in AD. Studies have shown a reduced volume of the hippocampus in patients with AD.

But with fewer and fewer trained Radiologists available, and increasing demands for medical imaging services - this presents a huge challenge for medical services.

In this project I build an end-to-end deep learning/AI system which features a machine learning algorithm that integrates into a clinical-grade viewer and automatically measures hippocampal volumes of new patients from their MRI images, as their studies are committed to the clinical imaging archive.

I used a dataset that contains the segmentations of the right hippocampus and will use the U-Net deep learning architecture to build a segmentation model.

  • Left: Cropped Hippocampus area from MRI image
  • Right: Predicted by model Hippocampus anterior (front) volume

After the model was built, I proceeded to integrate the model into a working clinical PACS such that it runs on every incoming study and produces a report with volume measurements.

2 The Dataset

I used the “Hippocampus” dataset from the Medical Decathlon competition. This dataset is stored as a collection of NIFTI files, with one file per volume, and one file per corresponding segmentation mask. The original images here are T2 MRI scans of the full brain.

3 Key files

Key files from the project located in the github repo are the following:

4 Results

The final model achieved a mean dice score of 1.47 and a mean jaccard score of 0.81 in terms of accuracy for correctly classifying the anterior and posterior volumes of the Hippocampus. The model was then integrated into a clinical viewer to generate automated reports and predictions for Hippocampus volumes submitted via brain MRI scans in a PACS environment. This model can then be used by a clinician to assist with diagnosis & prognosis.

Model deployment in automated report with predictions integrated into medical viewer.

Subscribe