Brain tumor segmentation with Deep Neural Networks
Mohammad HavaeiAxel DavyDavid Warde-FarleyAntoine BiardAaron CourvilleYoshua BengioChris PalPierre-Marc JodoinHugo Larochelle
Proposes a multi-path convolutional neural network for MRI brain tumor segmentation that combines local and global context alongside a two-phase training strategy to handle label imbalance, outperforming prior methods on the BRATS benchmark while running over thirty times faster.
The research paper describes a fully automatic method for segmenting brain tumors, specifically glioblastomas, from MRI scans. These tumors vary widely in location, shape, size, and appearance, and they often blend into surrounding healthy tissue, making accurate delineation difficult with standard imaging. Manual segmentation by radiologists is slow and variable, while existing automated approaches either rely on hand-crafted image features that lack flexibility or run too slowly for routine clinical use. The work addresses this gap at a time when MRI is central to diagnosis, growth tracking, and treatment planning for the roughly 23,000 new brain-cancer cases diagnosed annually in the United States alone.
The authors set out to build and evaluate convolutional neural network architectures that learn both fine local details and broader spatial context directly from multi-modal MRI data, while remaining fast enough for practical deployment. They tested several designs on the fully annotated 2013 BRATS challenge dataset, which includes 30 training cases and separate test and leaderboard sets, using standard Dice, sensitivity, and specificity metrics for the complete tumor, tumor core, and enhancing tumor regions.
The approach centers on two-pathway CNNs that process small patches at high resolution for local features and larger patches for global context, followed by a final convolutional output layer that speeds inference dramatically. Three cascaded variants feed the first network’s probability maps into a second network to capture label dependencies without the computational cost of conditional random fields. A two-phase training procedure first balances the highly skewed class distribution (healthy tissue dominates) and then recalibrates the output layer on the true distribution. Only minimal preprocessing—intensity normalization and bias correction—is applied.
The strongest model, InputCascadeCNN with two-phase training, reached Dice scores of 0.88 for the complete tumor, 0.79 for the core, and 0.73 for the enhancing region on the held-out test set, placing second overall on the 2013 leaderboard and outperforming the prior winning method. The same model processes a full brain volume in roughly three minutes on a single GPU—more than thirty times faster than the previous best published result—while a lighter two-pathway model finishes in 25 seconds. Joint training of local and global pathways, plus the cascade step, measurably reduced false positives and improved boundary accuracy compared with single-path baselines.
These gains matter because faster, more consistent segmentation can shorten planning time for surgery and radiotherapy and support longitudinal monitoring without added radiologist workload. The speed advantage also opens the door to near-real-time use in image-guided procedures. The method still shows lower accuracy on the enhancing-tumor sub-region, where boundaries are especially diffuse, and it processes data slice-by-slice because the 2013 volumes lack consistent resolution in the third dimension. Results are based on a modest number of cases from a single challenge year, so generalization to newer scanners or acquisition protocols remains to be confirmed.
Further work should include validation on larger, multi-year cohorts and exploration of three-dimensional extensions once isotropic data become available. A modest pilot study comparing automated outputs against multiple expert readers on routine clinical scans would clarify whether the observed accuracy is sufficient for decision support.
- Paper: Fully convolutional networks for semantic segmentation, Jonathan Long et al. (2015). Reading this foundational work on fully convolutional networks provides the core architectural principles that the source adapts for efficient volumetric and medical image segmentation.
- Paper: Semantic Image Segmentation with Deep Convolutional Nets and Fully Connected CRFs, Liang-Chieh Chen et al. (2014). Understanding this foundational DeepLab framework helps clarify how fully connected layers can be efficiently repurposed as convolutions for dense prediction tasks.
- Paper: An Introduction to Convolutional Neural Networks, Keiron O'Shea et al. (2015). This tutorial establishes the core concepts of convolutional neural networks that form the foundation of the segmentation models built in the source.
- Paper: Efficient multi‐scale 3D CNN with fully connected CRF for accurate brain lesion segmentation, Konstantinos Kamnitsas et al. (2016). This subsequent work extends the source's approach by developing a fully automatic 3D CNN pipeline combined with conditional random fields for improved lesion segmentation.
- Paper: 3D U-Net: Learning Dense Volumetric Segmentation from Sparse Annotation, Özgün Çiçek et al. (2016). This paper directly builds on the source's focus on volumetric medical data by extending U-Net into three dimensions for dense segmentation.
- Paper: UNet++: A Nested U-Net Architecture for Medical Image Segmentation, Zongwei Zhou et al. (2018). This subsequent study continues the line of biomedical segmentation research by introducing nested encoder-decoder skip pathways to further refine boundary accuracy.
