Skip to content

Pegah-Ardehkhani/Brain-MRI-Segmentation

Repository files navigation

Brain MRI Segmentation 🧠 license releases Open In Colab nbviewer

Dataset 📔

Kaggle link: Brain Tumor Data

The dataset used for development was obtained from The Cancer Imaging Archive (TCIA) and involved 110 cases of lower-grade glioma patients. Registers brain MR images with manual FLAIR abnormality segmentation masks are published as a Kaggle Dataset lgg-mri-segmentation.

Project Overview

U-net:

U-net from scratch has been written.

Key aspects of U-Net:

  1. Convolution Layers: Convolution operation are used to learn information from images which then can be used as features for machine learning problems.

  2. Down Sampling: Sequence of convolution combined with max pooling results in down sampling. In down sampling, size of the image is reduced which means we can observe larger portion of image in a single convolution operation. Down sampling is a good approach for identifying what is present in the image but for identifying where the object is we need to use upsampling.

  3. Up Sampling: It is just opposite of down sampling. We go from low resolution to high resolution. For up sampling U-Net uses transposed covolution which is achieved by taking transpose of filter kernels and reversing the process of convolution.

Following picture gives a clear picture of What a U-Net is.

Reustls:

Dice Score on the test data: 0.9027