Abstract
In recent years, there have been multiple works of literature reviewing methods for automatically segmenting multiple sclerosis (MS) lesions. However, there is no literature systematically and individually review deep learning-based MS lesion segmentation methods. Although the previous review also included methods based on deep learning, there are some methods based on deep learning that they did not review. In addition, their review of deep learning methods did not go deep into the specific categories of Convolutional Neural Network (CNN). They only reviewed these methods in a generalized form, such as supervision strategy, input data handling strategy, etc. This paper presents a systematic review of the literature in automated multiple sclerosis lesion segmentation based on deep learning. Algorithms based on deep learning reviewed are classified into two categories through their CNN style, and their strengths and weaknesses will also be given through our investigation and analysis. We give a quantitative comparison of the methods reviewed through two metrics: Dice Similarity Coefficient (DSC) and Positive Predictive Value (PPV). Finally, the future direction of the application of deep learning in MS lesion segmentation will be discussed.
1. Introduction
Multiple sclerosis (MS) is a chronic, autoimmune, and demyelinating disease with great clinical significance that affects the central nervous system (CNS). MS is a chronic disease that changes the morphology and structure of the brain due to the harm to the myelin sheath (Zhao et al., 2018). More importantly, MS can cause disability in young adults (Lladó et al., 2012). MS is relatively common in Europe, New Zealand, the United States, and parts of Australia. It has a major impact on the quality of life of the patients and their families due to its pathological characteristics.
The automatic segmentation of MS lesions through Magnetic Resonance Imaging (MRI) is of great clinical and engineering significance. Automatic segmentation of MS lesions is very important to help to detect diagnostic criteria for the disease which contains the spatial pattern of MS lesions in MRI (dissemination in space) and the emergence of new MS lesions(dissemination in time) (Polman et al., 2011). Besides, the automatic segmentation of MS lesions is essential for the quantitative analysis of the disease which is of great value in analyzing the progression of the disease and treatment options. Therefore, identifying and segmenting MS lesions is an indispensable step to characterize the disease and calculate and interpret more professional damage metrics. Before the emergence of the automatic segmentation of MS lesions, segmentation of the MS lesions were finished by experienced neuroradiologists. However, manual segmentation is a time-consuming and tedious process, and more importantly, it is poor efficiency due to intra-observer and inter-observer variability. Therefore, designing an excellent method for automatically segmenting MS lesions has great engineering significance. Figure 1 shows the morphology of MS lesions in MRI.
Figure 1
Although many methods for automatically segmenting MS lesions have been proposed in recent years, none of them are widely used in clinical practice. This is because this task still encounters many technical problems and challenges. The crucial difficulty is that the intensity distribution of MS and brain gray matter overlap in MRI (Sahraian and Radue, 2007). This is due to the limited resolution of the image, the heterogeneity of the lesion, and the complex shape of the brain tissue, which affects a large number of voxels located at the boundary of different tissues (Mortazavi et al., 2012). In addition, the variability of the appearance of the lesion and the magnetic resonance (MR) acquisitions are also a major challenge (Garćıa-Lorenzo et al.,
A comprehensive review is very important to help future generations design better automatic segmentation models based on the predecessors. In the past few years, there have also been related reviews (Danelakis et al.,
Although the previous reviews (Danelakis et al.,
The rest of this review is organized as follows: In section 2, public datasets and metrics for evaluating algorithm performance will be elucidated. Section 3 reviews various segmentation methods by classifying them into two different categories and presents a qualitative comparison of the algorithms reviewed. A discussion of the future directions is given in section 4.
2. Datasets and Metrics
In this section, we will introduce the datasets and metrics used by the methods we reviewed.
2.1. Datasets
The public datasets used by the deep learning-based MS lesion segmentation method has three: MICCAI 2008 (Styner et al., 2008), MICCAI 2016 (Commowick et al.,
Table 1
| Dataset | Num of subjects | Training set:Test set | MRI sequence | MRI scan |
|---|---|---|---|---|
| MICCAI 2008 (Styner et al., 2008) | 45 | 20:25 | T1-w, T2-w FLARE | 3T Siemens Allegra 3T Siemens |
| MICCAI 2016 (Commowick et al., | 53 | 15:38 | T1-w T2-w PD-w T1-w Gd FLARE | Siemens Aera 1.5T Siemens Verio 3T Philips Ingenia 3T General Electric Discovery 3T |
| ISBI 2015 (Carass et al., | 19 | 5:14 | T1-w, T2-w FLARE, PD-w | 3T Philips |
Public datasets used by the deep learning-based MS lesion segmentation.
2.2. Metrics
There are many evaluation measures used in the literature to quantify the performance of their methods. These evaluation measures are generally obtained by comparing the results of automatic segmentation with ground truth, and most of them are calculated by four basic terms (Goldberg-Zimring et al.,
TP(True Positive): The prediction is the MS lesion area, and the prediction is correct.
TN(True Negative): The prediction is not the MS lesion area, and the prediction is not correct.
FP(False Positive): The prediction is the MS lesion area, and the prediction is not correct.
FN(False Negative): The prediction is not the MS lesion area, and the prediction is not correct.
We list the commonly used metrics in Table 2. In this review, we use DSC and PPV to compare various methods.
Table 2
| Metrics | Calculation | Substitute name |
|---|---|---|
| Sensitivity (SEN) (Goldberg-Zimring et al., | True positive rate | |
| Specificity (SPE) (Goldberg-Zimring et al., | True negative rate | |
| Accuracy (ACC) (Wu et al., 2006) | ||
| Dice similarity coefficient (DSC) (Dice, | F1 Score | |
| Positive predictive value (PPV) (Altman and Bland, | Precision | |
| Fallout (FALL) (Udupa et al., 2006) | False positive rate |
Metrics for the reviewed methods.
3. Method
In this section, we first discuss the classification methods of all algorithms, and then we review the MS lesion segmentation methods based on deep learning and analyze their strengths and weaknesses according to the categorizations. Finally, we make a quantitative comparison of the methods we reviewed.
3.1. Categorization
The MS lesion segmentation task can be regarded as a semantic segmentation task, and each pixel (or voxel in 3D) of the input image needs to be classified as lesion or non-lesion. The methods we reviewed fall into two categories: patch-wise segmentation, semantic-wise segmentation. Patch-wise segmentation trains a CNN classifier to use the information of the pixel-centered patch to classify the pixel into two categories (lesions or non-lesions). Semantic segmentation trains a fully convolutional network to directly predict the lesion mask of the input image, so as to classify each pixel of the input image in a single forward propagation.
Patch-wise segmentation is the simplest segmentation strategy used when deep learning is just beginning to be applied to the segmentation of MS lesions. The segmentation strategy takes the pixel as the center and extracts a small patch of size N × N as the classifier input, and then they use the classifier to traverse the entire image. This strategy can make better use of contextual information around pixels. For example, Valverde et al. (2016) extracts 15 ×15 × 15 patches around each voxel from the MRI as input and then processes the input through two 3D convolutional layers. Then it output the probability of two possible classes(lesion and not lesion) through a fully connected layer and a softmax layer. In the patch-wise segmentation, a large number of redundant calculations are caused by overlapping patches, which decreases the calculation efficiency greatly. Semantic-wise segmentation is first proposed by Brosch et al. (
3.2. Patch-Wise Segmentation
Patch-wise segmentation potentially converges faster when training the model because it randomly samples the patches over the dataset (LeCun et al., 1998). Besides, it is easier to deal with the problem of class imbalance. However, the time required to train a complicated patch-wise method can make the method infeasible when the number and size of patches are large. In addition, it has a lot of redundant calculations due to patch overlap.
Yoo et al. (2014) uses deep learning for feature learning and random forest for classification. They first train a model on a large amount of unlabeled data to recognize common patterns and then add labels to the training subset so that both features and labels can be used for segmentation tasks. Vaidya et al. (2015) uses 3D patches as input, via 3D convolutional network to classify each patch into two categories. Havaei et al. (
3.3. Semantic-Wise Segmentation
Compared with patch-wise segmentation, semantic-wise segmentation requires only one forward propagation to classify all pixels of the input image and it has higher computational efficiency. But for the task of MS lesion segmentation, semantic-wise segmentation is prone to overfitting during training due to class imbalance, because in the MRI of MS lesions, the area of the lesion area is much smaller than the non-lesion area.
Brosch et al. (
3.4. Quantitative Comparation
In this subsection, reviewed MS lesion segmentation methods based on deep learning will be compared. Table 3 shows the main performance comparison of various methods. Each method is analyzed through the dataset used, the input data dimension, the CNN style, and the performance (DSC Dice,
Table 3
| Methods | Database | Dim | CNN style | DSC | PPV |
|---|---|---|---|---|---|
| Roy et al. (2018) | ISBI 2015 | 3D | Semantic-wise | 0.524 | 0.866 |
| Birenbaum and Greenspan ( | ISBI 2015 | 3D | Patch-wise | 0.627 | 0.789 |
| Valverde et al. (2019) | ISBI 2015 | 3D | Patch-wise | 0.63 | 0.840 |
| Aslani et al. ( | ISBI 2015 | 2D | Semantic-wise | 0.61 | 0.899 |
| Aslani et al. ( | ISBI 2015 | 2D | Semantic-wise | 0.698 | 0.74 |
| Zhang et al. (2019a) | ISBI 2015 | 2.5D | Semantic-wise | 0.693 | 0.908 |
| Havaei et al. ( | MICCAI 2008 | 2D | Patch-wise | 0.832 | N/A |
| Valverde et al. (2017) | MICCAI 2008 | 3D | Patch-wise | 0.871 | 0.786 |
| Brosch et al. ( | MICCAI 2008 | 3D | Semantic-wise | 0.840 | N/A |
| Valverde et al. (2016) | MICCAI 2016 | 3D | Patch-wise | 0.541 | N/A |
| McKinley et al. (2016) | MICCAI 2016 | 3D | Semantic-wise | 0.591 | N/A |
| Kazancli et al. (2018) | Proprietary | 3D | Patch-wise | 0.575 | N/A |
| La Rosa et al. (2020) | Proprietary | 3D | Semantic-wise | 0.60 | 0.64 |
| Brosch et al. ( | Proprietary | 3D | Semantic-wise | 0.355 | 0.414 |
| Gabr et al. ( | Proprietary | 3D | Semantic-wise | 0.95 | N/A |
| Coronado et al. ( | Proprietary | 3D | Semantic-wise | 0.77 | N/A |
| Zhang et al. (2018) | Proprietary | 2D | Semantic-wise | 0.672 | 0.724 |
| Aslani et al. ( | Proprietary | 3D | Semantic-wise | 0.50 | 0.519 |
| Gessert et al. ( | Proprietary | 4D | Semantic-wise | 0.64 | N/A |
| Gessert et al. ( | Proprietary | 3D | Semantic-wise | 0.656 | N/A |
| Zhang et al. (2019b) | Proprietary | 2D | Semantic-wise | 0.660 | N/A |
Comparison of reviewed methods.
It can be seen from Table 3 that there are many methods that still use their private datasets which is not convenient to compare the performance of the methods quantitatively.
4. Future Direction
Although deep learning has achieved great performance in MS lesion segmentation tasks compared with traditional methods (Danelakis et al.,
Transfer learning can be a future direction to deal with the problem of small data sets. This problem not only exists in the study of MS lesion segmentation, but it is also a coexisting problem in medical image processing due to the difficulty of medical image acquisition and labeling. To solve the problem of a small dataset scale, it can be achieved through transfer learning (Pan et al., 2011). Transfer learning is a learning method for small datasets. First, a deep learning network with great performance is trained on a large dataset, and then the network is fine-tuned on a smaller dataset for specific problems. For example, Shin et al. (2016) reported that they performed transfer learning from pre-trained models on the ImageNet dataset and then fine-tuned on lymph node and interstitial lung diseases instead of training from scratch to achieve great performance. But we believe that directly transferring from natural images to medical images may not be the best transfer learning solution, because natural images and medical images are very different. We think it is possible to perform transfer learning from large medical image data sets, such as DeepLesion (Yan et al., 2018).
Designing a specific loss function may be a direction to solve the problem of data imbalance in the future. The pattern of manifestation of data imbalance in MS lesion segmentation is class imbalance. In a single MRI volume, the number of voxels with lesions is much smaller than the number of voxels without lesions, which will bring problems such as overfitting to the network training (Li et al., 2019). The impact of this problem on the patch-wise CNN style is less than that of the semantic-wise CNN style because the patch-wise CNN style classifies each voxel separately. In the patch-wise CNN style, the ratio of positive samples and negative samples of training data can be adjusted artificially to balance the class (Valverde et al., 2017). However, for the semantic-wise CNN style, all voxels are classified in a forward propagation, which makes it difficult to artificially adjust the ratio of positive and negative samples in the training data. Therefore, the class imbalance problem of the semantic-wise CNN style requires to be solved from another aspect. Through our investigation of imbalance problems in other fields, we found that the current mainstream method to solve this problem is to design a loss function carefully (e.g., Sudre et al., 2017; Wong et al., 2018; Kervadec et al., 2019; Li et al., 2019). They have achieved great results in other segmentation tasks such as ischemic stroke injury by proposing a loss function for class imbalance. We believe that this will also help reduce the impact of overfitting caused by the data imbalance in the segmentation of MS lesions.
Collaborative image and feature adaptation can improve the performance of the domain adaptive model to a certain extent. The domain shift refers to the problem that the model performs well on the source domain, but performs much worse on the target domain. Although there are some methods (Valverde et al., 2019; Ackaouy et al.,
Through our research, we found that some recent work began to introducing the sequence model (Gessert et al.,
5. Conclusion
In this review, we have done a detailed survey on the method of MS lesion segmentation based on deep learning, and we reviewed the commonly used public datasets and evaluation metrics of this segmentation task. We categorize these methods according to the CNN style they use. It is difficult to compare various methods because the datasets they use are not only public datasets but also their own proprietary data sets. We use DSC and PPV for quantitative comparisons including those that use proprietary datasets. The future direction and some potential problems are also illustrated.
Although deep learning greatly improves the performance of automatic segmentation methods, it is still challenging to directly use in clinical analysis. Collecting large-scale data sets to tap the potential of deep learning can help accelerate its application in clinical medicine, and there is still a lot of room for improvement for deep learning-based methods. The automatic segmentation method with better performance and stronger robustness is undoubtedly beneficial to the doctor's pre-diagnosis and post-treatment of the patient's condition.
Statements
Data availability statement
Publicly available datasets were analyzed in this study. This data can be found here: http://www.ia.unc.edu/MSseg/; https://smart-stats-tools.org/lesion-challenge-2015; https://portal.fli-iam.irisa.fr/msseg-challenge/overview.
Author contributions
CZ was responsible for writing the paper. ZL was responsible for consulting the literature. LG was responsible for method comparison. SZ was responsible for revising the article. All authors contributed to the article and approved the submitted version.
Conflict of interest
The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.
References
1
AckaouyA.CourtyN.ValléeE.CommowickO.GalassiF. (2020). Unsupervised domain adaptation with optimal transport in multi-site segmentation of multiple sclerosis lesions from MRI data. Front. Comput. Neurosci. 14:19. 10.3389/fncom.2020.00019
2
AlshayejiM. H.Al-RousanM. A.EllethyH.AbedS. (2018). An efficient multiple sclerosis segmentation and detection system using neural networks. Comput. Electr. Eng. 71, 191–205. 10.1016/j.compeleceng.2018.07.020
3
AltmanD. G.BlandJ. M. (1994). Statistics notes: diagnostic tests 2: predictive values. BMJ309:102. 10.1136/bmj.309.6947.102
4
AslaniS.DayanM.MurinoV.SonaD. (2018). “Deep 2D encoder-decoder convolutional neural network for multiple sclerosis lesion segmentation in brain MRI,” in International MICCAI Brainlesion Workshop (Berlin: Springer), 132–141. 10.1007/978-3-030-11723-8_13
5
AslaniS.DayanM.StorelliL.FilippiM.MurinoV.RoccaM. A.et al. (2019). Multi-branch convolutional neural network for multiple sclerosis lesion segmentation. NeuroImage196, 1–15. 10.1016/j.neuroimage.2019.03.068
6
AslaniS.MurinoV.DayanM.TamR.SonaD.HamarnehG. (2020). “Scanner invariant multiple sclerosis lesion segmentation from MRI,” in 2020 IEEE 17th International Symposium on Biomedical Imaging (ISBI) (Piscatawa, NJ), 781–785. 10.1109/ISBI45749.2020.9098721
7
BadrinarayananV.KendallA.CipollaR. (2017). SegNet: a deep convolutional encoder-decoder architecture for image segmentation. IEEE Trans. Pattern Anal. Mach. Intell. 39, 2481–2495. 10.1109/TPAMI.2016.2644615
8
BirenbaumA.GreenspanH. (2016). “Longitudinal multiple sclerosis lesion segmentation using multi-view convolutional neural networks,” in Deep Learning and Data Labeling for Medical Applications (Berlin: Springer), 58–67. 10.1007/978-3-319-46976-8_7
9
BroschT.TangL.YooY.LiD. K. B.TraboulseeA.TamR. (2016). Deep 3D convolutional encoder networks with shortcuts for multiscale feature integration applied to multiple sclerosis lesion segmentation. IEEE Trans. Med. Imaging (Piscataway, NJ) 35, 1229–1239. 10.1109/TMI.2016.2528821
10
BroschT.YooY.TangL. Y.LiD. K.TraboulseeA.TamR. (2015). “Deep convolutional encoder networks for multiple sclerosis lesion segmentation,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Springer), 3–11. 10.1007/978-3-319-24574-4_1
11
CaiJ.LuL.XieY.XingF.YangL. (2017). Improving deep pancreas segmentation in CT and MRI images via recurrent neural contextual learning and direct loss function. arXiv[preprint]arXiv:1707.04912. 10.1007/978-3-030-13969-8_1
12
CarassA.RoyS.JogA.CuzzocreoJ. L.MagrathE.GhermanA.et al. (2017). Longitudinal multiple sclerosis lesion segmentation: resource and challenge. NeuroImage148, 77–102. 10.1016/j.neuroimage.2016.12.064
13
ChaurasiaA.CulurcielloE. (2017). “Linknet: Exploiting encoder representations for efficient semantic segmentation,” in 2017 IEEE Visual Communications and Image Processing (VCIP) (Piscataway, NJ), 1–4. 10.1109/VCIP.2017.8305148
14
ChenC.DouQ.ChenH.QinJ.HengP.-A. (2019). “Synergistic image and feature adaptation: towards cross-modality domain adaptation for medical image segmentation,” in Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 33 (Menlo Park, CA), 865–872. 10.1609/aaai.v33i01.3301865
15
ÇiçekÖ.AbdulkadirA.LienkampS. S.BroxT.RonnebergerO. (2016). “3D U-net: learning dense volumetric segmentation from sparse annotation,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Berlin: Springer), 424–432. 10.1007/978-3-319-46723-8_49
16
CommowickO.IstaceA.KainM.LaurentB.LerayF.SimonM.et al. (2018). Objective evaluation of multiple sclerosis lesion segmentation using a data management and processing infrastructure. Sci. Rep.8:13650. 10.1038/s41598-018-31911-7
17
CoronadoI.GabrR. E.NarayanaP. A. (2020). Deep learning segmentation of gadolinium-enhancing lesions in multiple sclerosis. Multip. Scleros. J. 10.1177/1352458520921364
18
DanelakisA.TheoharisT.VerganelakisD. A. (2018). Survey of automated multiple sclerosis lesion segmentation techniques on magnetic resonance imaging. Computer. Med. Imaging Graph. 70, 83–100. 10.1016/j.compmedimag.2018.10.002
19
DiceL. R. (1945). Measures of the amount of ecologic association between species. Ecology26, 297–302. 10.2307/1932409
20
EssaE.AldesoukyD.HusseinS. E.RashadM. (2020). Neuro-fuzzy patch-wise R-CNN for multiple sclerosis segmentation. Med. Biol. Eng. Comput. 58, 2161–2175. 10.1007/s11517-020-02225-6
21
GabrR. E.CoronadoI.RobinsonM.SujitS. J.DattaS.SunX.et al. (2020). Brain and lesion segmentation in multiple sclerosis using fully convolutional neural networks: a large-scale study. Multip. Scler. J. 26, 1217–1226. 10.1177/1352458519856843
22
García-LorenzoD.FrancisS.NarayananS.ArnoldD. L.CollinsD. L. (2013). Review of automatic segmentation methods of multiple sclerosis white matter lesions on conventional magnetic resonance imaging. Med. Image Anal. 17, 1–18. 10.1016/j.media.2012.09.004
23
GessertN.BengsM.KrügerJ.OpferR.OstwaldtA.-C.ManogaranP.et al. (2020a). 4D deep learning for multiple sclerosis lesion activity segmentation. arXiv[preprint]arXiv:2004.09216.
24
GessertN.KrügerJ.OpferR.OstwaldtA.-C.ManogaranP.KitzlerH. H.et al. (2020b). Multiple sclerosis lesion activity segmentation with attention-guided two-path CNNs. Comput. Med. Imaging Graph. 84:101772. 10.1016/j.compmedimag.2020.101772
25
Goldberg-ZimringD.AchironA.MironS.FaibelM.AzhariH. (1998). Automated detection and characterization of multiple sclerosis lesions in brain MR images. Magnet. Reson. Imaging16, 311–318. 10.1016/S0730-725X(97)00300-7
26
HashemiR. H.BradleyW. G.LisantiC. J. (2012). MRI: the Basics: The Basics. Lippincott Williams & Wilkins.
27
HavaeiM.GuizardN.ChapadosN.BengioY. (2016). “Hemis: Hetero-modal image segmentation,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Berlin: Springer), 469–477. 10.1007/978-3-319-46723-8_54
28
JégouS.DrozdzalM.VazquezD.RomeroA.BengioY. (2017). “The one hundred layers tiramisu: fully convolutional densenets for semantic segmentation,” in Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops (Piscataway, NJ), 11–19. 10.1109/CVPRW.2017.156
29
KaurA.KaurL.SinghA. (2020). State-of-the-art segmentation techniques and future directions for multiple sclerosis brain lesions. Arch. Comput. Methods Eng. 1–27. 10.1007/s11831-020-09403-7
30
KazancliE.PrchkovskaV.RodriguesP.VillosladaP.IgualL. (2018). “Multiple sclerosis lesion segmentation using improved convolutional neural networks,” in VISIGRAPP (4: VISAPP) (Portugal), 260–269. 10.5220/0006540902600269
31
KervadecH.BouchtibaJ.DesrosiersC.GrangerE.DolzJ.AyedI. B. (2019). “Boundary loss for highly unbalanced segmentation,” in International Conference on Medical Imaging With Deep Learning (Amsterdam), 285–296.
32
KumarP.NagarP.AroraC.GuptaA. (2018). “U-segNet: fully convolutional neural network based automated brain tissue segmentation tool,” in 2018 25th IEEE International Conference on Image Processing (ICIP) (Piscataway, NJ), 3503–3507. 10.1109/ICIP.2018.8451295
33
La RosaF.AbdulkadirA.FartariaM. J.RahmanzadehR.LuP.-J.GalbuseraR.et al. (2020). Multiple sclerosis cortical and WM lesion segmentation at 3T MRI: a deep learning method based on FLAIR and MP2RAGE. NeuroImage27:102335. 10.1016/j.nicl.2020.102335
34
LeCunY.BottouL.BengioY.HaffnerP. (1998). Gradient-based learning applied to document recognition. Proc. IEEE86, 2278–2324. 10.1109/5.726791
35
LiZ.KamnitsasK.GlockerB. (2019). “Overfitting of neural nets under class imbalance: analysis and improvements for segmentation,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Berlin: Springer), 402–410. 10.1007/978-3-030-32248-9_45
36
LladóX.OliverA.CabezasM.FreixenetJ.VilanovaJ. C.QuilesA.et al. (2012). Segmentation of multiple sclerosis lesions in brain MRI: a review of automated approaches. Inform. Sci. 186, 164–185. 10.1016/j.ins.2011.10.011
37
McKinleyR.WepferR.GundersenT.WagnerF.ChanA.WiestR.et al. (2016). “Nabla-net: A deep dag-like convolutional architecture for biomedical image segmentation,” in International Workshop on Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries (Berlin: Springer), 119–128. 10.1007/978-3-319-55524-9_12
38
MortazaviD.KouzaniA. Z.Soltanian-ZadehH. (2012). Segmentation of multiple sclerosis lesions in MR images: a review. Neuroradiology54, 299–320. 10.1007/s00234-011-0886-7
39
PanS. J.TsangI. W.KwokJ. T.YangQ. (2011). Domain adaptation via transfer component analysis. IEEE Trans. Neural Netw. 22, 199–210. 10.1109/TNN.2010.2091281
40
PolmanC. H.ReingoldS. C.BanwellB.ClanetM.CohenJ. A.FilippiM.et al. (2011). Diagnostic criteria for multiple sclerosis: 2010 revisions to the Mcdonald criteria. Ann. Neurol. 69, 292–302. 10.1002/ana.22366
41
RonnebergerO.FischerP.BroxT. (2015). “U-net: Convolutional networks for biomedical image segmentation,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Berlin: Springer), 234–241. 10.1007/978-3-319-24574-4_28
42
RoyS.ButmanJ. A.ReichD. S.CalabresiP. A.PhamD. L. (2018). Multiple sclerosis lesion segmentation from brain MRI via fully convolutional neural networks. arXiv arXiv:1803.09172. 10.1109/ISBI.2018.8363545
43
SahraianM. A.RadueE.-W. (2007). MRI Atlas of MS Lesions. Berlin: Springer Science & Business Media.
44
ShanmuganathanM.AlmutairiS.AborokbahM. M.GanesanS.RamachandranV. (2020). Review of advanced computational approaches on multiple sclerosis segmentation and classification. IET Signal Process. 14, 333–341. 10.1049/iet-spr.2019.0543
45
ShinH.-C.RothH. R.GaoM.LuL.XuZ.NoguesI.et al. (2016). Deep convolutional neural networks for computer-aided detection: CNN architectures, dataset characteristics and transfer learning. IEEE Trans. Med. Imaging35, 1285–1298. 10.1109/TMI.2016.2528162
46
StynerM.LeeJ.ChinB.ChinM.CommowickO.TranH.et al. (2008). 3D segmentation in the clinic: a grand challenge II: MS lesion segmentation. Midas J. 2008, 1–6.
47
SudreC. H.LiW.VercauterenT.OurselinS.CardosoM. J. (2017). “Generalised dice overlap as a deep learning loss function for highly unbalanced segmentations,” in Deep Learning in Medical Image Analysis and Multimodal Learning for Clinical Decision Support (Berlin: Springer), 240–248. 10.1007/978-3-319-67558-9_28
48
UdupaJ. K.LeBlancV. R.ZhugeY.ImielinskaC.SchmidtH.CurrieL. M.et al. (2006). A framework for evaluating image segmentation algorithms. Comput. Med. Imaging Graph. 30, 75–87. 10.1016/j.compmedimag.2005.12.001
49
VaidyaS.ChunduruA.MuthuganapathyR.KrishnamurthiG. (2015). “Longitudinal multiple sclerosis lesion segmentation using 3D convolutional neural networks,” in Proceedings of the 2015 Longitudinal Multiple Sclerosis Lesion Segmentation Challenge, 1–2.
50
ValverdeS.CabezasM.RouraE.González-VilláS.ParetoD.VilanovaJ. C.et al. (2017). Improving automated multiple sclerosis lesion segmentation with a cascaded 3D convolutional neural network approach. NeuroImage155, 159–168. 10.1016/j.neuroimage.2017.04.034
51
ValverdeS.CabezasM.RouraE.González-VillaS.SalviJ.OliverA.et al. (2016). “Multiple sclerosis lesion detection and segmentation using a convolutional neural network of 3D patches,” in MSSEG Challenge Proceedings: Multiple Sclerosis Lesions Segmentation Challenge Using a Data Management and Processing Infrastructure, 75.
52
ValverdeS.SalemM.CabezasM.ParetoD.VilanovaJ. C.Ramió-TorrentáL.et al. (2019). One-shot domain adaptation in multiple sclerosis lesion segmentation using convolutional neural networks. NeuroImage21:101638. 10.1016/j.nicl.2018.101638
53
WangZ.SmithC. D.LiuJ. (2018). “Ensemble of multi-sized FCNs to improve white matter lesion segmentation,” in International Workshop on Machine Learning in Medical Imaging (Berlin: Springer), 223–232. 10.1007/978-3-030-00919-9_26
54
WongK. C.MoradiM.TangH.Syeda-MahmoodT. (2018). “3D segmentation with exponential logarithmic loss for highly unbalanced object sizes,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Berlin: Springer), 612–619. 10.1007/978-3-030-00931-1_70
55
WuY.WarfieldS. K.TanI. L.WellsW. M.III.MeierD. S.van SchijndelR. A.et al. (2006). Automated segmentation of multiple sclerosis lesion subtypes with multichannel MRI. NeuroImage32, 1205–1215. 10.1016/j.neuroimage.2006.04.211
56
XuC.XuL.GaoZ.ZhaoS.ZhangH.ZhangY.et al. (2018). Direct delineation of myocardial infarction without contrast agents using a joint motion feature learning architecture. Med. Image Anal. 50, 82–94. 10.1016/j.media.2018.09.001
57
YanK.WangX.LuL.SummersR. M. (2018). Deeplesion: automated mining of large-scale lesion annotations and universal lesion detection with deep learning. J. Med. Imaging5:036501. 10.1117/1.JMI.5.3.036501
58
YooY.BroschT.TraboulseeA.LiD. K.TamR. (2014). “Deep learning of image features from unlabeled data for multiple sclerosis lesion segmentation,” in International Workshop on Machine Learning in Medical Imaging (Berlin: Springer), 117–124. 10.1007/978-3-319-10581-9_15
59
ZeilerM. D.TaylorG. W.FergusR. (2011). “Adaptive deconvolutional networks for mid and high level feature learning,” in 2011 International Conference on Computer Vision (Piscataway, NJ), 2018–2025. 10.1109/ICCV.2011.6126474
60
ZhangC.SongY.LiuS.LillS.WangC.TangZ.et al. (2018). “MS-GAN: GAN-based semantic segmentation of multiple sclerosis lesions in brain magnetic resonance imaging,” in 2018 Digital Image Computing: Techniques and Applications (DICTA) (Piscataway, NJ), 1–8. 10.1109/DICTA.2018.8615771
61
ZhangH.ValcarcelA. M.BakshiR.ChuR.BagnatoF.ShinoharaR. T.et al. (2019a). “Multiple sclerosis lesion segmentation with tiramisu and 2.5 D stacked slices,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Berlin: Springer), 338–346. 10.1007/978-3-030-32248-9_38
62
ZhangH.ZhangJ.ZhangQ.KimJ.ZhangS.GauthierS. A.et al. (2019b). “RsaNet: Recurrent slice-wise attention network for multiple sclerosis lesion segmentation,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Berlin: Springer), 411–419. 10.1007/978-3-030-32248-9_46
63
ZhaoS.GaoZ.ZhangH.XieY.LuoJ.GhistaD.et al. (2017). Robust segmentation of intima-media borders with different morphologies and dynamics during the cardiac cycle. IEEE J. Biomed. Health Inform. 22, 1571–1582. 10.1109/JBHI.2017.2776246
64
ZhaoS.WuX.ChenB.LiS. (2019a). Automatic spondylolisthesis grading from mris across modalities using faster adversarial recognition network. Med. Image Anal. 58:101533. 10.1016/j.media.2019.101533
65
ZhaoS.WuX.ChenB.LiS. (2019b). “Automatic vertebrae recognition from arbitrary spine mri images by a hierarchical self-calibration detection framework,” in International Conference on Medical Image Computing and Computer-Assisted Intervention (Springer), 316–325. 10.1007/978-3-030-32251-9_35
66
ZhaoY.GuoS.LuoM.ShiX.BilelloM.ZhangS.et al. (2018). A level set method for multiple sclerosis lesion segmentation. Magn. Reson. Imaging49, 94–100. 10.1016/j.mri.2017.03.002
67
ZhengY.SongH.ZhangK.FanJLiuX. (2019). Dynamically spatiotemporal regularized correlation tracking. IEEE Trans. Neural Netw. Learn. Syst.1–12. 10.1109/tnnls.2019.2929407
68
ZhengY.SunY.MuhammadK.De AlbuquerqueV. H. C. (2020). Weighted LIC-based structure tensor with application to image content perception and processing. IEEE Trans. Ind. Inf.1. 10.1109/tii.2020.2980577
Summary
Keywords
deep learning, multiple sclerosis, brain MRI, review, segmentation
Citation
Zeng C, Gu L, Liu Z and Zhao S (2020) Review of Deep Learning Approaches for the Segmentation of Multiple Sclerosis Lesions on Brain MRI. Front. Neuroinform. 14:610967. doi: 10.3389/fninf.2020.610967
Received
28 September 2020
Accepted
26 October 2020
Published
20 November 2020
Volume
14 - 2020
Edited by
Yuhui Zheng, Nanjing University of Information Science and Technology, China
Reviewed by
Chenchu Xu, Western University, Canada; Zhiming Luo, Xiamen University, China
Updates

Check for updates
Copyright
© 2020 Zeng, Gu, Liu and Zhao.
This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.
*Correspondence: Shen Zhao z-s-06@163.com
Disclaimer
All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.