Abstract
White Matter Hyperintensities (WMH) are the most common manifestation of cerebral small vessel disease (cSVD) on the brain MRI. Accurate WMH segmentation algorithms are important to determine cSVD burden and its clinical con-sequences. Most of existing WMH segmentation algorithms require both fluid attenuated inversion recovery (FLAIR) images and T1-weighted images as inputs. However, T1-weighted images are typically not part of standard clinical scans which are acquired for patients with acute stroke. In this paper, we propose a novel brain atlas guided attention U-Net (BAGAU-Net) that leverages only FLAIR images with a spatially-registered white matter (WM) brain atlas to yield competitive WMH segmentation performance. Specifically, we designed a dual-path segmentation model with two novel connecting mechanisms, namely multi-input attention module (MAM) and attention fusion module (AFM) to fuse the information from two paths for accurate results. Experiments on two publicly available datasets show the effectiveness of the proposed BAGAU-Net. With only FLAIR images and WM brain atlas, BAGAU-Net outperforms the state-of-the-art method with T1-weighted images, paving the way for effective development of WMH segmentation. Availability: https://github.com/Ericzhang1/BAGAU-Net
Introduction
Cerebral Small Vessel Disease (cSVD) is a major public health burden leading to vascular cognitive impairment, in-tracerebral hemorrhage, and acute ischemic stroke27. Histologically, the white matter in patients with cSVD exhibits areas of demyelination and pallor that are seen as white matter hyperintensities (WMH) on the brain magnetic resonance imaging (MRI)4,5. A higher volume of WMH is thought to represent a higher burden of cSVD. Indeed, WMH volume load has been suggested as a potential biomarker for cSVD burden. Clinical studies have shown that a larger WMH volume are associated with cognitive impairment, worse stroke functional outcome, and worse response to acute stroke therapy23-26. Hence, practical methods for accurate segmentation of WMH to determine its volume are currently needed. Manual tracing WMH in MRI brain images is currently the accepted method for segmenting WMH on brain MRI images. However, it is time-consuming and may be associated inter-observer variability which limits its applicability in daily clinical practice and real time decision making in patients with acute stroke.
Deep neural networks have shown robust performance in WMH segmentation tasks compared to manual segmentation9-11,19. Most of these methods make use of T1-weighted and FLAIR imaging sequences acquired for each patient without considering their clinical usage. In general, the T1-weighted image provides the spatial location information of white matter (WM) that helps guide the WMH segmentation process20. Additionally, research MRI scans are often acquired using standardized protocols in a homogenous group of patients that limit their applicability to routine clinical MRI scans. However, in the real-world clinical setting, rapid MRI acquisition in the setting of acute ischemic stroke without T1 sequences have become the normal protocol to allow for critical time sensitive clinical decision making in this setting21,22. Hence, there is a critical need to develop a WMH segmentation method based on FLAIR sequences only that can be employed in the treatment of acute stroke patients. Brain atlases have been developed in the past to assist in imaging segmentation by improving preprocessing and image registration and they have been utilized in WMH segmentation as well28,29. However, these approaches heavily rely on the presence of T1 sequences for adequate registration and segmentation30,31. Recently, atlas-based segmentation was implemented in deep learning, which is either (1) employed in a neural network to learn the correspondences between target image and atlas images18 or (2) used to provide guidance as prior knowledge during model training17. Motivated by the latter case, we explored the use of publicly available WM brain atlas to guide our WMH segmentation in the absence of corresponding T1-imaging sequence.
In this paper, we propose a novel brain atlas guided attention U-Net (BAGAU-Net) for WMH segmentation to address the primary limitations mentioned above. BAGAU-Net consists of two segmentation paths that take the FLAIR image and the spatially registered WM brain atlas separately to provide accurate segmentation results. The two segmentation paths are combined using two novel attention-based connecting mechanisms. Our contribution in this work is four fold: (1) We propose to use only FLAIR and publicly available WM brain atlas to achieve robust performance on WMH segmentation compared to using T1-weighted image; (2) we propose an end-to-end dual path model called brain atlas guided attention U-Net (BAGAU-Net) that leverage an additional path, namely atlas encoding path, to effectively capture the prior knowledge from WM brain atlas to help improve segmentation performance; (3) we introduce multi-input attention module (MAM) and attention fusion module (AFM) to combine the information from two paths to further improve the segmentation performance; (4) we evaluate our model on two publicly available datasets, the 2017 MICCAI WHM segmentation challenge* and the Aging Brain: Vasculature, Ischemia, and Behavior Study (ABVIB) dataset†. The results show that BAGAU-Net has out-performed previously proposed state-out-the-art method on both datasets.
Method
As aforementioned, T1-weighed images are not acquired frequently for WMH segmentation due to time constraints in most the clinical settings. In contrast, FLAIR images are expected in the treatment of acute stroke patients, but does not possess detailed information as T1-weighted image. To relieve such a dilemma, we propose to explore extra prior knowledge to improve the performance with only FLAIR images to match the performance with T1-weighted images. Inspired by the classical concepts of atlas-based segmentation, we propose to exploit prior knowledge hidden in a WM brain to guide the segmentation of the FLAIR images. To this end, we introduce the BAGAU-Net architecture for WMH segmentation. We first describe the generation process of standard WM brain atlas. Then we go into details about the dual-path architecture, including (1) the segmentation path, (2) the atlas encoding path, (3) the multi-input attention module (MAM), and (4) the attention fusion module (AFM).
Atlas Generation
Brain atlases are often used to identify neuroanatomical structures of the brain. We used the ICBM152 (2009c Non-linear Symmetric, 1 × 1 × 1 in mm)‡ and the corresponding WM brain atlas5,6 for our model. Elastix3,4 was used to spatially register the T1-weighted ICBM152 atlas to each of our target images with the following parameters: A multi-resolution pyramid with three levels using advanced mattes mutual information, standard gradient descent optimizer, maximum number of iterations 2,000, and a third order B-spline interpolator. The corresponding ICBM152 WM brain atlas was then transformed to match the target image. An example of spatially registered ICBM152 T1-weighted and WM brain atlas, target FLAIR and manually segmented WMH are shown in Fig. 1.
Model Architecture
Convolution neural networks have shown robust performance in many segmentation tasks. As inspired by Li et al.9, we proposed brain atlas guided attention U-Net (BAGAU-Net) that consists of two separate encoding-decoding paths. As shown in Fig 2, the upper path is a U-Net like architecture designed to extract semantic information from the image itself. The lower path is the atlas encoding path where the spatially registered atlas image is input to help guide the decoding process in the segmentation path. Moreover, we designed a multi-input attention module (MAM) and attention fusion module (AFM) to effectively combine the information between the two paths during the decoding process of segmentation path based on the attention gate (AG) as introduced by Oktay et al.12. The overview of the proposed architecture can be viewed in Fig. 2.
Segmentation Path
The segmentation path is designed to extract semantic features from the MRI scans. We adopt a U-Net like architecture that consists of four consecutive encoding blocks with feature channel equaling to 64, 96, 128, 256, 512 followed by four decoding blocks connected by skip connections. Each encoding block consists of two consecutive 3 × 3 convolutions followed by batch normalization and a rectified linear unit (ReLU). The max-pooling operation is applied for the down-sampling process to extract high-level features. Each decoding block are constructed in a similar fashion as the encoding architecture, except that an up-sampling operation is applied at the end of the block.
Atlas Encoding Path
The atlas encoding path is used to encode spatial information from atlas images and serves as supplementary features during the decoding process of the segmentation path. We have adopted a similar architecture as our segmentation path with two modifications: (1) each 3 × 3 convolution in substitute with 5 × 5 convolution as inspired by Peng et al.13 to capture multi-scale features. (2) we use addition instead of concatenation as inspired by Long et al.14 to combine lower and higher level features.
Multi-input Attention Module
We implemented an attention mechanism that takes multi-input to compute target-aware features. Attention Gate, as proposed by Oktay et al.12, is an efficient way of extracting salient features and contextual information, which allows the model to learn to focus on a subset of target features. a gating vector and be the input to the attention gate. The attention gate computes the attention signal using addition attention, which is as:
As shown in Fig. 3 (a), MAM takes input from both segmentation path and atlas encoding path at each level and computes the combined feature based on the re-weighted summation of results computed by the attention gate.
Attention Fusion Module
Given the output from the last layer of both the segmentation path and atlas encoding path, we implemented a channel-attention mechanism to refine the feature of the last layer. The output from the atlas encoding path is used to compute the attention mask, where, as shown in Fig. 3 (b), the result is then fused with the output from the segmentation path using element-wise multiplication. A final convolution layer is applied to produce the segmentation result based the concatenation of the fused features.
Experiment Datasets
The 2017 MICCAI WMH segmentation challenge dataset is publicly available. The dataset consists of 60 training subjects collection from 3 different types of scanners. A more detailed description of the challenge dataset can be found in Table. 1. For each subject, a FLAIR, T1, and the ground truth (manual segmentation of WMH) are provided. All images were bias-corrected using SPM12. We performed image registration through Elastix. The ABVIB dataset is a publicly available dataset originally established to study aging brains and cognitive consequences secondary to cardiovascular risk factors. 30 FLAIR subject images were selected and bias-corrected without associated T1 sequences. Manual segmentation of WMH for ground truth was performed by a trained student and independently verified by two investigators including a board certified neurointensivist and neurologist.
Model Training and Implementation Details
We split both WMH challenge and ABVIB dataset into training set, validation set and testing set with a ratio of 8:1:1. Instead of using DSC loss for segmentation, we adopt the Tversky loss metric15 for all model training to provide more balanced weighting between false positives (FPs) and false negatives (FNs). Let P and G be the predict and true label correspondingly. The Tversky loss can expressed as:
where a in the above equation is a hyper-parameter that controls the trade off between FP and FN. We set the value of a to 0.7 based on the results of extensive search by Salehi et al.15. We use Adam optimizer with learning rate of 0.0002 and batch size of 32 for all models; the number of epochs is set to 200. To demonstrate the effectiveness of the atlas encoding path, we compared our proposed model to the winning team's solution9 as well as the same architecture but simply adding the atlas knowledge as a third channel input. We implemented our model using Pytorch platform7 and trained the model on single Nvidia Volta V100 GPU with 16GB memory. We adopt gradient accumulation when dealing with out of memory problems. We employed data augmentation to both datasets, including mirroring, rotation, shearing and scaling. Gaussian normalization is further applied in addition to bias-correction to reduce variation across images. A threshold of 0.5 was applied to transform the output of the model into a binary segmentation map.
Model Evaluation
The results of the BAGAU-Net segmentation were evaluated both by visual comparison of the automated segmentation and the manually segmentations and by using quantitative metrics. Four quantitative metrics were used for the quantitative assessment: Dice coefficient (DSC), average volume difference (AVD), Recall, and F1 score were calculated for each segmentation. Dice coefficient (DSC) is a measure of the amount of overlap between two segmented struc-tures. The average volume difference measures the total volume difference between ground truth and the predicted segmentations. Recall and F1 were calculated and based on individual number of lesions.
Results and Discussion
Here we show our evaluation of the proposed BAGAU-Net on the 2017 MICCAI WMH segmentation challenge and the ABVIB datasets. A quantitative evaluation of the results is summarized in Table 2 and Table 3 respectively. Results showed that incorporate the knowledge of atlas can improve segmentation performance, and our proposed BAGAU-Net yields competitive results by achieving the best performance across all metric comparisons. More importantly, our proposed method has achieved better DSC and AVD scores compared to segmentation performance using standard FLAIR and T1-weighted images, which are important metrics for evaluating WMH segmentation in clinical images. The recall and F1 statistics were lower in the ABVIB data set than in the WMH Challenge data set. This was primarily due to the presence of a number of small WMH lesions in the ABVIB dataset that were not as prevalent in the WMH Challenge dataset. However the DSC and AVD metrics were similar for both data sets, suggesting that the same WMH lesion load for the whole brain was segmented correctly using the BAGAU-Net model. This was observed to be true in the visual review.
Table 2: Results of BAGAU-Net and other methods on WMH challenge datasets. ↓ indicates that the smaller the better (0=best, and 100=worst). ↑ indicates that the greater the better (0=worst, and 100=best).
Model | DSC (%) ↑ | AVD (%) ↓ | Recall (%) ↑ | F1 (%) ↑ |
U-Net9 (FLAIR + T1) | 81.39 | 16.63 | 81.41 | 78.12 |
U-Net9 (FLAIR) | 80.58 | 17.13 | 81.72 | 76.75 |
U-Net9 (FLAIR + Atlas) | 80.61 | 17.99 | 80.27 | 76.07 |
BAGAU-Net | 82.02 | 14.19 | 82.58 | 78.42 |
Table 3: Results of BAGAU-Net and other methods on ABVIB datasets.
Model | DSC (%) ↑ | AVD (%) ↓ | Recall (%) ↑ | F1 (%) ↑ |
U-Net9 (FLAIR) | 77.48 | 21.18 | 51.50 | 56.13 |
U-Net9 (FLAIR + Atlas) | 76.56 | 23.87 | 52.12 | 56.14 |
BAGAU-Net | 80.27 | 16.17 | 58.51 | 60.48 |
Segmentation results are shown in Fig. 4. It is clear that the absence of T1-weighted images can result in less accurate segmentation results as shown in column 4 (FLAIR only) versus columns 3 (FLAIR + T1). It can be observed that BAGAU-Net, using only FLAIR and WM brain atlas, yield similar segmentation results compared to segmentation results using FLAIR and T1-weighted image as shown in Fig. 4 column 5. Both experimental results and visual comparison showed that BAGAU-Net can effectively capture useful information from WM brain atlas and use it as prior guidance to yield more accurate segmentation results. Compared to the state-of-the-art method developed for WMH segmentation that requires the presence of T1-weighted image, our proposed method can provide even better results with only FLAIR and publicly available WM brain atlas. Furthermore, our model performs better compared to a recent review of the automated methods for WMH segmentation in which the calculated average DSC across studies was 0.7320.
To illustrate the effectiveness of different components in BAGAU-Net, we perform ablation studies on the WMH challenge datasets as shown in Table 4. For our baseline method, we took out both MAM and AFM from the model and replace it with simple concatenation. Compared to our baseline, we observed that adding either attention modules improves segmentation performance across all metrics. Moreover, including both MAM and AFM further improves the results.
Table 4: Results of ablation study on MAM and AFM on WMH challenge dataset.
Model | DSC (%) ↑ | AVD (%) ↓ | Recall (%) ↑ | F1 (%) ↑ |
BAGAU-Net (without MAM and AFM) | 80.52 | 17.33 | 81.64 | 74.19 |
BAGAU-Net (without MAM) | 81.29 | 15.72 | 82.13 | 77.31 |
BAGAU-Net (without AFM) | 80.93 | 16.19 | 81.87 | 76.63 |
BAGAU-Net | 82.02 | 14.19 | 82.58 | 78.42 |
Model Limitation
The main limitation of our model is its application in a relatively small sample size of patients with cSVD (total sample size is 90 subjects). However, more importantly, to address this limitation and increase the external validity of our model, our study subjects were derived from two different datasets (MICCAI and ABVIB). Furthermore, we have only utilized FLAIR sequences in this study to simulate real life scans in this study. The second limitation of our model is that we did not segment separately other lesion types of cSVD such as lacunes since lacunes may have different clinical and prognostic significance than WMH. Our aim in this study, however, was to first develop a successful paradigm for WMH since it is the most prevalent type of cSVD. Current paradigms are under development to subsequently segment lacunes within WMH regions. Finally, our current model was developed in cohorts of patients without other acute or chronic brain etiologies such as acute stroke or brain tumors which can introduce further heterogeneities in brain MRI scans in different clinical settings. The aim of this study, however, was to focus on the method development for combining brain atlas knowledge with deep learning for WMH alone. We will subsequently validate this approach in patients with other brain pathologies.
Conclusion and Future Work
In this paper, we proposed brain atlas guided attention U-Net to improve performance on WMH segmentation. Our model combined domain knowledge of WM brain atlas with deep convolution neural networks by introducing the segmentation path and the atlas encoding path. The proposed MAM and AFM mechanisms were applied at each decoding steps and final prediction step accordingly to help to capture more comprehensive features as well as increase model interpretability by incorporating prior knowledge. We showed that WMH segmentation with T1-weighted image could be replaced and even improved by using publicly available WM brain atlas with our proposed BAGAU-Net. Results showed that our proposed model has out-performed state-out-of-the-art for WMH segmentation on both datasets. Datasets used in this study were collected from elderly group (>65), but the brain atlas we used were generated from a younger group (44±7) (currently, there is no public available brain atlas that focus on aging groups). Ventricles and sulci spaces in aging brains are generally larger than that of young brains16. Hence, our model can be further improved by the implementation of an aging white matter brain atlas.
Acknowledgements
This work was funded in part by the National Science Foundation (grant number CBET-2037398) and the National Center for Advancing Translational Research (grant number UL1TR002733). The content is solely the responsibility of the authors and does not necessarily represent the official views of the funding agencies.
Footnotes
Figures & Table
Table 1: Overview of the 2017 MICCAI WMH segmentation challenge dataset.
Institute | Scanner | Size |
UMC Utrecht | 3 T Philips Achieva | 20 |
NUHS Singapore | 3 T Siemens TrioTim | 20 |
VU Amsterdam | 3 T GE Signa HDxt | 20 |
References
- 1.Kuijf HJ, Biesbroek JM, De Bresser J, Heinen R, Andermatt S, Bento M, Berseth M, Belyaev M, Cardoso MJ, Casamitjana A, Collins DL. Standardized assessment of automatic segmentation of white matter hyperintensities and results of the WMH segmentation challenge. IEEE transactions on medical imaging. 2019 Mar 19;38(11):2556–68. doi: 10.1109/TMI.2019.2905770. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 2.Iglesias JE, Sabuncu MR. Multi-atlas segmentation of biomedical images: a survey. Medical image analysis. 2015 Aug 1;24(1):205–19. doi: 10.1016/j.media.2015.06.012. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 3.Klein S, Staring M, Murphy K, Viergever MA, Pluim JP. Elastix: a toolbox for intensity-based medical image registration. IEEE transactions on medical imaging. 2009 Nov 17;29(1):196–205. doi: 10.1109/TMI.2009.2035616. [DOI] [PubMed] [Google Scholar]
- 4.Shamonin DP, Bron EE, Lelieveldt BP, Smits M, Klein S, Staring M. Fast parallel image registration on CPU and GPU for diagnostic classification of Alzheimer’s disease. Frontiers in neuroinformatics. 2014 Jan 16;7:50. doi: 10.3389/fninf.2013.00050. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 5.Collins DL, Zijdenbos AP, Baare´ WF, Evans AC. ANIMAL+ INSECT: improved cortical structure segmentation. InBiennial International Conference on Information Processing in Medical Imaging; Berlin, Heidelberg. Springer; 1999. Jun 28, pp. 210–223. [Google Scholar]
- 6.Fonov VS, Evans AC, McKinstry RC, Almli CR, Collins DL. Unbiased nonlinear average age-appropriate brain templates from birth to adulthood. NeuroImage. 2009(47):S102. [Google Scholar]
- 7.Paszke A, Gross S, Massa F, Lerer A, Bradbury J, Chanan G, Killeen T, Lin Z, Gimelshein N, Antiga L. Desmaison A. Pytorch: An imperative style, high-performance deep learning library. InAdvances in neural information processing systems. 2019. pp. 8026–8037.
- 8.Ronneberger O, Fischer P, Brox T. InInternational Conference on Medical image computing and computer-assisted intervention. Springer, Cham; 2015. Oct 5, U-net: Convolutional networks for biomedical image segmentation; pp. 234–241. [Google Scholar]
- 9.Li H, Jiang G, Zhang J, Wang R, Wang Z, Zheng WS, Menze B. Fully convolutional network ensembles for white matter hyperintensities segmentation in MR images. NeuroImage. 2018 Dec 1;183:650–65. doi: 10.1016/j.neuroimage.2018.07.005. [DOI] [PubMed] [Google Scholar]
- 10.Li H, Zhang J, Muehlau M, Kirschke J, Menze B. InInternational MICCAI Brainlesion Workshop. Springer, Cham; 2018. Sep 16, Multi-scale convolutional-stack aggregation for robust white matter hyperintensities segmentation; pp. 199–207. [Google Scholar]
- 11.Ghafoorian M, Karssemeijer N, Heskes T, van Uden IW, Sanchez CI, Litjens G, de Leeuw FE, van Ginneken B, Marchiori E, Platel B. Location sensitive deep convolutional neural networks for segmentation of white matter hyperintensities. Scientific Reports. 2017 Jul 11;7(1):1–2. doi: 10.1038/s41598-017-05300-5. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 12.Oktay O, Schlemper J, Folgoc LL, Lee M, Heinrich M, Misawa K, Mori K, McDonagh S, Hammerla NY, Kainz B, Glocker B. Attention u-net: Learning where to look for the pancreas. arXiv preprint arXiv:1804.03999. 2018. Apr 11,
- 13.Peng C, Zhang X, Yu G, Luo G, Sun J. Large kernel matters–improve semantic segmentation by global convolutional network. InProceedings of the IEEE conference on computer vision and pattern recognition. 2017. pp. 4353–4361.
- 14.Long J, Shelhamer E, Darrell T. Fully convolutional networks for semantic segmentation. InProceedings of the IEEE conference on computer vision and pattern recognition. 2015:3431–3440. doi: 10.1109/TPAMI.2016.2572683. [DOI] [PubMed] [Google Scholar]
- 15.Salehi SS, Erdogmus D, Gholipour A. InInternational Workshop on Machine Learning in Medical Imaging. Springer, Cham; 2017. Sep 10, Tversky loss function for image segmentation using 3D fully convolutional deep networks; pp. 379–387. [Google Scholar]
- 16.Dickie DA, Shenkin SD, Anblagan D, Lee J, Blesa Cabez M, Rodriguez D, Boardman JP, Waldman A, Job DE, Wardlaw JM. Whole brain magnetic resonance image atlases: a systematic review of existing atlases and caveats for use in population imaging. Frontiers in neuroinformatics. 2017 Jan 19;11:1. doi: 10.3389/fninf.2017.00001. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 17.Xu Z, Niethammer M. InInternational Conference on Medical Image Computing and Computer-Assisted Intervention. Springer, Cham; 2019. Oct 13, DeepAtlas: Joint semi-supervised learning of image registration and segmentation; pp. 420–429. [Google Scholar]
- 18.Wickramasinghe U, Knott G, Fua P. InInternational Conference on Medical Image Computing and Computer-Assisted Intervention. Springer, Cham; 2019. Oct 13, Probabilistic Atlases to Enforce Topological Constraints; pp. 218–226. [Google Scholar]
- 19.Wu J, Zhang Y, Wang K, Tang X. Skip Connection U-Net for White Matter Hyperintensities Segmentation From MRI. IEEE Access. 2019 Oct 21;7:155194–202. [Google Scholar]
- 20.Caligiuri ME, Perrotta P, Augimeri A, Rocca F, Quattrone A, Cherubini A. Automatic detection of white matter hyperintensities in healthy aging and pathology using magnetic resonance imaging: a review. Neuroinformatics. 2015 Jul 1;13(3):261–76. doi: 10.1007/s12021-015-9260-y. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 21.Thomalla G, Simonsen CZ, Boutitie F, Andersen G, Berthezene Y, Cheng B, Cheripelli B, Cho TH, Fazekas F, Fiehler J, Ford I. MRI-guided thrombolysis for stroke with unknown time of onset. New England Journal of Medicine. 2018 Aug 16;379(7):611–22. doi: 10.1056/NEJMoa1804355. [DOI] [PubMed] [Google Scholar]
- 22.Albers GW, Marks MP, Kemp S, Christensen S, Tsai JP, Ortega-Gutierrez S, McTaggart RA, Torbey MT. Kim- Tenser M, Leslie-Mazwi T, Sarraj A. Thrombectomy for stroke at 6 to 16 hours with selection by perfusion imaging. New England Journal of Medicine. 2018 Feb 22;378(8):708–18. doi: 10.1056/NEJMoa1713973. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 23.Etherton MR, Wu O, Giese AK, Lauer A, Boulouis G, Mills B, Cloonan L, Donahue KL, Copen W, Schaefer P, Rost NS. White matter integrity and early outcomes after acute ischemic stroke. Translational stroke research. 2019 Dec 1;10(6):630–8. doi: 10.1007/s12975-019-0689-4. [DOI] [PubMed] [Google Scholar]
- 24.Etherton MR, Wu O, Rost NS. Recent advances in leukoaraiosis: white matter structural integrity and functional outcomes after acute ischemic stroke. Current cardiology reports. 2016 Dec 1;18(12):123. doi: 10.1007/s11886-016-0803-0. [DOI] [PubMed] [Google Scholar]
- 25.van Norden AG, de Laat KF, Gons RA, van Uden IW, van Dijk EJ, van Oudheusden LJ, Esselink RA, Bloem BR, van Engelen BG, Zwarts MJ, Tendolkar I. Causes and consequences of cerebral small vessel disease. The RUN DMC study: a prospective cohort study. Study rationale and protocol. BMC neurology. 2011 Dec 1;11(1):29. doi: 10.1186/1471-2377-11-29. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 26.Arsava EM, Rahman R, Rosand J, Lu J, Smith EE, Rost NS, Singhal AB, Lev MH, Furie KL, Koroshetz WJ, Sorensen AG. Severity of leukoaraiosis correlates with clinical outcome after ischemic stroke. Neurology. 2009 Apr 21;72(16):1403–10. doi: 10.1212/WNL.0b013e3181a18823. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 27.Au R, Massaro JM, Wolf PA, Young ME, Beiser A, Seshadri S, D’Agostino RB, DeCarli C. Association of white matter hyperintensity volume with decreased cognitive functioning: the Framingham Heart Study. Archives of neurology. 2006 Feb 1;63(2):246–50. doi: 10.1001/archneur.63.2.246. [DOI] [PubMed] [Google Scholar]
- 28.Oishi K, Faria A, Jiang H, Li X, Akhter K, Zhang J, Hsu JT, Miller MI, van Zijl PC, Albert M, Lyketsos CG. Atlas-based whole brain white matter analysis using large deformation diffeomorphic metric mapping: application to normal elderly and Alzheimer’s disease participants. Neuroimage. 2009 Jun 1;46(2):486–99. doi: 10.1016/j.neuroimage.2009.01.002. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 29.Wang Y, Catindig JA, Hilal S, Soon HW, Ting E, Wong TY, Venketasubramanian N, Chen C, Qiu A. Multi-stage segmentation of white matter hyperintensity, cortical and lacunar infarcts. Neuroimage. 2012 May 1;60(4):2379–88. doi: 10.1016/j.neuroimage.2012.02.034. [DOI] [PubMed] [Google Scholar]
- 30.Jenkinson M, Beckmann CF, Behrens TE, Woolrich MW, Smith SM. Fsl. Neuroimage. 2012 Aug 15;62(2):782–90. doi: 10.1016/j.neuroimage.2011.09.015. [DOI] [PubMed] [Google Scholar]
- 31.Ashburner J. SPM: a history. Neuroimage. 2012 Aug 15;62(2):791–800. doi: 10.1016/j.neuroimage.2011.10.025. [DOI] [PMC free article] [PubMed] [Google Scholar]