Skip to main content
  • Educational Review
  • Open access
  • Published:

Convolutional neural networks for brain tumour segmentation

Abstract

The introduction of quantitative image analysis has given rise to fields such as radiomics which have been used to predict clinical sequelae. One growing area of interest for analysis is brain tumours, in particular glioblastoma multiforme (GBM). Tumour segmentation is an important step in the pipeline in the analysis of this pathology. Manual segmentation is often inconsistent as it varies between observers. Automated segmentation has been proposed to combat this issue. Methodologies such as convolutional neural networks (CNNs) which are machine learning pipelines modelled on the biological process of neurons (called nodes) and synapses (connections) have been of interest in the literature. We investigate the role of CNNs to segment brain tumours by firstly taking an educational look at CNNs and perform a literature search to determine an example pipeline for segmentation. We then investigate the future use of CNNs by exploring a novel field—radiomics. This examines quantitative features of brain tumours such as shape, texture, and signal intensity to predict clinical outcomes such as survival and response to therapy.

Keypoints

  • Convolutional neural networks simply involve analysing features derived from the image to perform tasks such as segmenting tumours.

  • This initially involves training the network with a manually segmented dataset which then is poised to segment patient images.

  • This has a role in segmentation of brain tumours such as glioblastoma and lower-grade astrocytomas.

  • Segmented images can be further processed to predict clinical sequelae such as survival and response to therapy.

Introduction

With the introduction of methods to quantitatively analyse gliomas with computational methods comes a new frontier for radiology. It is important for radiologists to be abreast of advances in machine learning. This has been recognised by the recent changes in the Royal Australian and New Zealand College of Radiologists (RANZCR) curriculum that incorporates machine learning into the part I applied imaging technology examinations [1]. Methods that incorporate quantitative analyses will add to the traditional visual analysis of images. An important step in the image analysis pipeline is the anatomical segmentation of regions of interest (ROI), for example, defining a volume of abnormal tissue from a background of normal tissue. This will allow for statistical analysis of features that is not visible by human perception [2]. For example, the field of radiomics is fast developing as a method of predicting survival times from imaging features such as shape of a volume of interest and texture and intensity of the voxel habitat. With the development of these methods comes a greater need for automated segmentation. Figure 1 shows inconsistencies in blinded manual segmentation of brain tumours by the first and second authors. A measure of consistency of image segmentation can be performed by the Sørensen–Dice coefficient, and this was calculated with the StudierFenster calculator (available at: http://studierfenster.tugraz.at/). This ranges from 0 to 1 with 1 having 100% consistency [3]. The value obtained from the segmentation by the first and second author was 0.91 which demonstrates the discrepancy in manual segmentation.

Table 1 CNN studies and main findings obtained from literature search
Fig. 1
figure 1

Manual anatomical segmentation by first (red) and second author (yellow) with intersection (purple). Image courtesy of A.Prof Frank Gaillard, Radiopaedia.org, rID: 22205

As an example of machine learning, this educational paper will examine the use of convolutional neural networks for low-grade diffuse astrocytoma (World Health Organization grade 2) and high-grade (World Health Organization grade 4) glioblastoma—also known as glioblastoma multiforme (GBM) segmentation. Convolutional neural networks (CNNs) are a unique machine learning structure originally modelled on the human visual cortex [4]. The brain was studied due to the abundance of segmentation methods that are already available and well established in the literature [5]. Machine learning is fast developing and is exponentially being represented at international conferences [6]. An educational perspective is needed for radiologists. This paper provides a novel balance between education and a state-of-the-art review on convolutional neural networks in glioblastoma.

To better understand CNNs, artificial neural networks will be reviewed briefly as this is a simple introduction for understanding neural networks such as CNNs. Artificial neural networks involve inputs which feed into a hidden layer which has biases or weightings associated with it and outputs which change as the machine ‘learns’ from a dataset to produce the expected result [7]. Further details will be provided in this paper.

From Fig. 2, each blue circle represents a node or neuron from which the name ‘neural network’ is derived from. There is an input to each neuron. The arrows or ‘axons’ represent the connection between neurons. The result is an output which generates an approximation of the image which is iteratively refined [8].

Fig. 2
figure 2

Diagrammatic representation of a convolutional neural network

The nodes receive an initial input from a data source—as seen in Fig. 2. This is then fed into the next neuronal layer and given an initial weighting. This middle ‘hidden’ layer can be repeated a multitude of times. This is then fed into the output node, and this produced the desired result. However, this needs to be refined further, and one loop or iteration is not sufficient for the generation of an optimal output. This is where the novelty of a neural network comes in. In order to refine the output of the nodes, the weightings are changed. Thus, through iteration, the nodes are given different weightings. Based on these weightings, the output can changed through each iteration and eventually an output that reaches the desired result can be produced. Thus, neural networks provide a means of optimising an initial data input via weighting certain aspects of the input to produce an optimal result.

There are various other segmentation methods detailed elsewhere [9]. Some of the notable segmentation models are:

  • Thresholding method—as the name implies, voxels above a threshold are classified as belonging to the tumour [10].

  • Edge-based method—changes in the intensity between edges of voxels are used as the boundaries of the tumours [11].

  • Region growing method—a seed voxel is inputted into the segmentation; from this seed, voxels that are similar are classified as belonging to the tumour [12].

  • Watershed algorithm—this is a unique segmentation method whereby the voxel intensities or gradients are represented by a topographical map similar to those seen in geography. Based on the ‘steepness’ of the map, a boundary is assigned [13].

  • Atlas method—a tumour free reference MRI is used to segment the MRI containing the tumour volume [14].

The advantages of the convolutional neural network are the fact that it provides optimal accuracy of segmentation. However, this is at the cost of computational load [9]. With advances in computation, the implementation of convolutional neural networks and refinement of the structural segmentation of brain tumours can be enhanced.

Diffuse astrocytic and oligodendroglial tumours are the commonest types of primary brain tumours in adults. Such tumours are classified on the basis of histological features such as cytological atypia, anaplasia, mitotic activity, microvascular proliferation, and necrosis by the World Health Organization as either grade 2, grade 3, or grade 4 with grade 4 having the worst prognosis. Glioblastoma (also known as glioblastoma multiforme or GBM) is the most frequently encountered grade 4 diffuse astrocytic and oligodendroglial tumour in adults [15]. Glioblastoma is a major public health concern. Zinn et al. [16] demonstrated that out of a cohort of 21,783 patients, the survival time without therapy has been shown to be 1 month; however, even with gross total resection, survival has been found to be only 11 months in the same population group. The cause of death is often not related to direct GBM complications. Diseases of the heart, pneumonia, influenza, stroke, and infections remain the top causes of death [17]. The accurate segmentation of GBM is a key step to allow for computational analysis.

The aims of this educational paper are to (1) describe machine learning as it pertains to neural networks, (2) describe current trends in low-grade diffuse astrocytoma and GBM segmentation with convolutional neural networks, and (3) describe potential uses and future directions.

Machine learning and convolutional neural networks

CNNs work by using an input, convoluting this input with a filter (also termed a kernel) and giving an output. Figure 3 demonstrates the general overview of this process in a graphic, although additional steps are needed to produce a fully functional CNN. The network is first trained to a dataset. This is termed machine learning. This data training works by cycling or iterating through the training dataset multiple times and weighting the outputs or applying a bias on the artificial neurons based on the how close the output is to the expected output. With each iteration, the biases change to eventually obtain an output that is close to the expected output [8].

Fig. 3
figure 3

Filtration of input through convolution

Improving the output

To improve the output and develop the CNN, additional steps are needed. This involves overfitting correction, data augmentation, pooling, and the application of rectified linear unit (ReLU). Further details are below:

Overfitting refers to the fact that the neural network may be overtrained to the training dataset and produce inferior segmentations. To account for this, the CNN needs to be trained somehow to recognise imprecise features of the input. Four example methods are described. These are data augmentation, dropout, batch normalisation, and pooling.

Data augmentation can be used to generate imprecise inputs. Similar to the software used to edit photographic images, MRI images can be cropped, zoomed, and rotated [18]. This reduces overfitting as the neural network will not recognise specific patterns within the input dataset based on morphological arrangements which are deemed irrelevant between images. Dropout is a method whereby nodes are temporarily ‘dropped’ in the convolutional neural network in order to produce imprecision within the dataset. Batch normalisation is a method employed to reduce the weighting power of nodes that have a high bias. This allows for generalisability on other datasets as these high weights may be associated with specific precise features within the training set.

Pooling is where the input image is downsampled or the resolution is degraded in order to train the CNN to identify features that are imprecise. In other words, it reduces the chance of the network identifying insignificant details. For example, oedema on T2-FLAIR varies between patients. If the CNN was not pooled, it may pick up non-specific details from the training dataset resulting in imprecise segmentation of oedema from the tumour during validation [8].

From the filtered data, the image is approximated using a linear function. Given the heterogeneity of biological patterns, this only provides a rough approximation of the actual image. There needs to be a correction to account for non-linearity within the image. A rectifier can be applied which approximates for this non-linearity within the dataset. An example unit that applies the rectifier is called the ReLU [8].

The network is then flattened from the feature map into a column for input into the neural network. In simple terms, there is the (1) input, (2) convolution with non-linearity correction through ReLU, (3) overfitting correction (in Fig. 4, we demonstrate pooling), (4) flattening, and (5) insertion into the neural network. The steps for this process are detailed in Fig. 4.

Fig. 4
figure 4

Input into a single node within a convolutional neural network

Fig. 5
figure 5

PRISMA flowchart for search performed on the 24 October

Literature review process

As per the Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA), a literature review was performed on Web of Science, Scopus, and PubMed using the search terms: (neural AND network*) AND (GBM OR “glioblastoma” OR astrocytoma) AND segment*. We found 18 articles from PubMed, 72 from Scopus, and 51 from Web of Science. After duplicates were removed, 92 articles remained. For a broad scope, we included all studies that examined convolutional neural networks in MRI brains the past 5 years. We excluded conference abstracts, non-English papers, reviews, and genomic papers. Microscopy papers were excluded. Grading studies and differentiation studies were also excluded on the basis that these studies did not address segmentation directly. After the inclusion and exclusion criteria were applied, 29 studies remained. Full texts were reviewed. Four studies were excluded on the basis that they were non-convoluted neural networks, 3 studies were excluded since they were not available, and 3 grading studies, 2 reviews, 2 purely genetic studies, 1 survival prediction study, 1 computed tomography study, 2 radiomic studies, and 1 which looked at the differentiation between different tumours were also excluded. This is summarised in Fig. 5.

Fig. 6
figure 6

Generation of fractal model of tumour microvasculature through FracLac [37]

In addition to the 9 studies found by the data search, a hand search revealed one additional study [19]. Therefore, n = 10 studies were used in the qualitative analysis.

Literature findings

Convolutional neural networks represent a growing field within the literature. Our search found 10 studies that detailed the methodology of segmentation involving convolutional neural networks. The methodology examined in this review will be divided into subsections relating each step of the segmentation process. The main findings will be reported. An example segmentation algorithm will be proposed based on the findings from the literature. The main output measure is the Sørensen–Dice coefficient (DSC) which is calculated as follows [3]:

DSC = \( \frac{2\mid X\cap Y\mid }{\left|X\right|+\mid Y\mid } \)

The X represents the cardinal elements in the first set (automatic segmentation set), and Y represents the second set—generally the manually segmented set that the automatic segmentation set is tested against. The symbol represents where the segmentations intersect. Where the DSC is not reported, the accuracy will be used. Table 1 reports the main findings of studies involving CNNs.

For the training set, most studies used the Multimodal Brain Tumour Segmentation (BraTS) benchmark which is a dataset of manually segmented MRIs containing high-grade and low-grade gliomas set up by the Medical Image Computing and Computer-Assisted Interventions (MICCAI) [20]. Only one study [21] used a training set from their own institution. This study negated the need for initial manual segmentation due to using a watershed algorithm which automatically segmented the training dataset. This improved the accuracy of segmentation from 82 to 89% and could be used for the development of future CNNs.

Specifics of convolution layers (i.e. filtration of images) were not detailed extensively. This is partly because feature extraction involves multiple algorithms and multiple methodologies. For example, Perkuhn et al. [22] used 53 kernels for feature extraction in four convolutional layers. It would be difficult to summarise such extensive and numerous convolution methodology.

Overfitting was done in a variety of ways. Three articles did not correct or did not report details of overfitting [23,24,25]. The majority of overfitting was done via down sampling [24, 26,27,28,29]. This involves reducing the resolution of the image in order reduce interpretation of irrelevant fine details within the training dataset. Pereira et al. [30] used a unique method of overfitting correction whereby they used augmentation by 90° rotation on the training dataset.

For non-linearity correction, different algorithms were used. This includes leaky rectifier units [30], max-out non-linearity [28], noisy rectifier linear units [26], rectified linear units [29], and parametric rectified linear unit which is a modification of the traditional rectified linear unit. One study used 3 corrections—leaky rectifier units, Softmax function, and hyperbolic tangent function [27]. For two studies, the non-linear correction applied was not reported [23, 25].

From the literature search, an example segmentation process is devised. The segmentation process should be fully automated and in an ideal situation be performed in institutions with the same scanner/imaging protocols given discrepancies would affect the segmentation process [26]. However, this would negate the generalisability to other contexts and CNNs need to be optimised for the multi-institutional context. Normalisation of images could be done by methods proposed in the BraTS [20] segmentation challenge. This was done by standardising multi-institutional images to 1 × 1 × 1 mm voxel parameters which were then skull stripped. This initial training input can be done via the watershed algorithm which has been shown to have superior segmentation potential than manual segmentation [25]. Nearest-neighbour Re-sampling-based Elastic-Transformation (NNET) U-Net deep convolution algorithm suggested by Hasan et al. [24] can be applied for the initial filter as this has shown to increase the DSC. Overfitting can be improved by using the ELOBA_λ algorithm proposed by Naceur et al. [29] which has shown a DSC of 0.89, 0.76, and 0.81 for the whole tumour, tumour core, and enhanced tumour respectively. FLAIR volume can be segmented with the methods proposed by [19] as DSC has been reported as 0.917 for volume of FLAIR hyperintensity. Non-linearity correction has not been extensively studied, so no recommendations can be made. The main limitation is the computing power given the intricate processes involved in each step.

Clinical applications and future directions

The main application of brain tumour segmentation in the clinical sphere is quantitative image analysis. Brain tumours have traditionally been analysed qualitatively through inspection, and this have given rise to an elaborate feature lexicon summarised by projects such as Visually AcceSAble Rembrandt Images (VASARI) [32]. Radiomics is a field focused on quantitative feature analysis. This field is focused on extracting voxel and volume features of the tumour habitat and predicting clinical outcomes such as survival. It has been used to grade tumours, evaluate response to therapy and predict genetic status of GBM—for example, isocitrate dehydrogenase (IDH) status in GBM, which is of clinical significance since negative status (or ‘wildtype’) implies a more aggressive tumour [33]. Segmentation and the processes involved in extraction can be translated into meaningful analysis in radiomics. Radiomic features such as shape, texture, intensity, and patterns of the microvasculature have been extensively studied in GBM [34].

Shape and texture represent the most extensively studied radiomic features. Filtration matrices that are applied during the convolution of images during the segmentation processes can subsequently be used to predict clinical outcomes such as survival. For example, in a study by Sanghani et al. [35], 2200 shape, volumetric, and texture features were extracted from 163 patients. Using kernels for each feature, i.e. shape, texture, and volume, prediction of overall survival was sorted into groups with short (< 10 months), medium (10–15 months), and long (> 15 months) term survival with 88.95% accuracy. In the same study, prediction of short (< 400 days) and long (> 400 days) was shown to have a higher accuracy of 98.7%. This demonstrates the novelty of radiomics in predicting clinical outcomes and the importance of translating segmentation algorithms into radiology.

Other applications are in the sphere of treatment planning, particularly for radiotherapy and targeted chemotherapy. Assessment of the tumour microvasculature can be performed by fractal analysis which assesses repeating patterns of the vasculature not easily represented by simple Euclidian geometry. Studies of tumour vasculature through susceptibility-weighted imaging (SWI) have shown a decrease in a measure of fractal capacity dimension post-treatment with an anti-angiogenic (bevacizumab) [36]. Figure 6 demonstrates the modelling of tumour vasculature in the programme FracLac [37]. This demonstrates the applicability of quantitative analysis to predict tumour response to therapy. Similarly, tumour volumes and features such as oedema, spiculation, and necrosis can be extracted to represent response to radiotherapy [38]. This demonstrates the novel use of segmentation processes to to aid in the production of meaningful results that have an impact on clinical practice.

Machine learning has an important role in the automation of quantitative image analysis. The dataset is trained using feature extractions on a training dataset which necessitates the need for feeding fixed parameters. Machine learning through multiple iterations can provide more accurate results than standard voxel-based manipulation methods. Survival prediction for classification into short, medium and long term survival has shown to have a moderate accuracy of up to 57.8% using ensemble learning (combination of multiple machine learning algorithms) in a study of 9 types machine learning models [39]. Further work is needed in this area to investigate the highest predictive machine learning models of survival, and this can be achieved by translation of segmentation features extraction and modelling into radiomics.

Conclusion

Convolutional neural networks remain a growing area of research in automated tumour segmentation. It is important for radiologists to have a working knowledge of convolutional neural networks so that they are well positioned to deploy these tools in future clinical practice. A basic overview is provided in this paper that allows the reader to be well-informed in the world of automated segmentation. Clinical applicability to GBM is highly relevant as brain tumour segmentation from normal parenchyma is the first step in the utilisation of quantitative image feature analysis such as radiomics for prognostication, and treatment planning. Through the further development of segmentation techniques in brain tumours, this could be applied to other areas of radiology. Convolutional neural networks represent a growing field that will likely help radiologists provide more accurate care for their patients.

Availability of data and materials

Not applicable

Abbreviations

BraTS:

Brain Tumour Segmentation

CNN:

Convoluted neural network

DSC:

Sørensen–Dice coefficient

GBM:

Glioblastoma multiforme

IDH:

Isocitrate dehydrogenase

MICCAI:

Medical Image Computing and Computer-Assisted Interventions

MRI:

Magnetic resonance imaging

NNET:

Nearest-neighbour Re-sampling-based Elastic-Transformation

RANZCR:

Royal Australian and New Zealand College of Radiologists

ReLU:

Rectified linear unit

ROI:

Region of interest

SWI:

Susceptibility-weighted imaging

WHO:

World Health Organization

References

  1. Training and Assessment Reform for Clinical Radiology. RANZCR ASM 2019 Conference. Auckland, 2019.

  2. Aerts HJ (2016) The potential of radiomic-based phenotyping in precision medicine: a review. JAMA Oncol 2:1636–1642

    Article  Google Scholar 

  3. Sørensen TJ (1948) A method of establishing groups of equal amplitude in plant sociology based on similarity of species content and its application to analyses of the vegetation on Danish commons. I kommission hos E. Munksgaard

  4. Fukushima K (1980) Neocognitron: a self organizing neural network model for a mechanism of pattern recognition unaffected by shift in position. Biol Cybern 36:193–202

    Article  CAS  Google Scholar 

  5. Işın A, Direkoğlu C, Şah M (2016) Review of MRI-based brain tumor image segmentation using deep learning methods. Procedia Computer Science 102:317–324

    Article  Google Scholar 

  6. RSNA (2018) Artificial Intelligence. Machine LearningRSNA News, RSNA

    Google Scholar 

  7. Jin KH, McCann MT, Froustey E, Unser M (2017) Deep convolutional neural network for inverse problems in imaging. IEEE Trans Image Process 26:4509–4522

    Article  Google Scholar 

  8. Yamashita R, Nishio M, Do RKG, Togashi K (2018) Convolutional neural networks: an overview and application in radiology. Insights Imaging 9:611–629

    Article  Google Scholar 

  9. Angulakshmi M, Lakshmi Priya GG (2017) Automated brain tumour segmentation techniques— a review. Int J Imaging Syst Technol 27:66–77

    Article  Google Scholar 

  10. Zaidi H, El Naqa I (2010) PET-guided delineation of radiation therapy treatment volumes: a survey of image segmentation techniques. Eur J Nucl Med Mol Imaging 37:2165–2187

    Article  Google Scholar 

  11. Aslam A, Khan E, Beg MS (2015) Improved edge detection algorithm for brain tumor segmentation. Procedia Computer Science 58:430–437

  12. Lin G-C, Wang W-J, Kang C-C, Wang C-M (2012) Multispectral MR images segmentation based on fuzzy knowledge and modified seeded region growing. Magn Reson Imaging 30:230–246

  13. Pandav S (2014) Brain tumor extraction using marker controlled watershed segmentation. IJERT 2278–0181

  14. Bauer S, Seiler C, Bardyn T, Buechler P, Reyes M (2010) Atlas-based segmentation of brain tumor images using a Markov random field-based tumor growth model and non-rigid registration. Conf Proc IEEE Eng Med Biol Soc 2010:4080–4083

  15. Komori T (2017) The 2016 WHO classification of tumours of the central nervous system: the major points of revision. Neurol Med Chir (Tokyo) 57:301–311

  16. Zinn PO, Colen RR, Kasper EM, Burkhardt JK (2013) Extent of resection and radiotherapy in GBM: a 1973 to 2007 surveillance, epidemiology and end results analysis of 21,783 patients. Int J Oncol 42:929–934

    Article  Google Scholar 

  17. Best B, Nguyen HS, Doan NB et al (2019) Causes of death in glioblastoma: insights from the SEER database. J Neurosurg Sci 63:121–126

    PubMed  Google Scholar 

  18. Mikołajczyk A, Grochowski M (2018) Data augmentation for improving deep learning in image classification problem. 2018 International Interdisciplinary PhD Workshop (IIPhDW), pp 117-122

  19. Chang K, Beers AL, Bai HX et al (2019) Automatic assessment of glioma burden: a deep learning algorithm for fully automated volumetric and bidimensional measurement. Neuro Oncol 21:1412–1422

    Article  Google Scholar 

  20. Isensee F, Kickingereder P, Wick W, Bendszus M, Maier-Hein KH (2017) Brain tumor segmentation and radiomics survival prediction: contribution to the brats 2017 challenge. International MICCAI Brainlesion Workshop. Springer, pp 287-297

  21. Madhukumar S, Santhiyakumari N (2015) Evaluation of k-means and fuzzy C-means segmentation on MR images of brain. Egyp J Radiol Nuclear Med 46:475–479

    Article  Google Scholar 

  22. Perkuhn M, Stavrinou P, Thiele F et al (2018) Clinical evaluation of a multiparametric deep learning model for glioblastoma segmentation using heterogeneous magnetic resonance imaging data from clinical routine. Invest Radiol 53:647–654

    Article  Google Scholar 

  23. Arunachalam M, Royappan Savarimuthu S (2017) An efficient and automatic glioblastoma brain tumor detection using shift-invariant shearlet transform and neural networks. Int J Imaging Syst Technol 27:216–226

    Article  Google Scholar 

  24. Hasan SMK, Linte CA (2018) A modified U-Net convolutional network featuring a Nearest-neighbor Re-sampling-based Elastic-Transformation for brain tissue characterization and segmentation. Proc IEEE West N Y Image Signal Process Workshop 2018

  25. Sundararajan R SS, Venkatesh S, Jeya Pandian M (2019) Convolutional neural network based medical image classifier. International Journal of Recent Technology and Engineering 8

  26. Albadawy EA, Saha A, Mazurowski MA (2018) Deep learning for segmentation of brain tumors: impact of cross-institutional training and testing: Impact. Med Phys 45:1150–1158

    Article  Google Scholar 

  27. Chang J, Zhang L, Gu N et al (2019) A mix-pooling CNN architecture with FCRF for brain tumor segmentation. J Visual Comm Image Represent 58:316–322

    Article  Google Scholar 

  28. Havaei M, Davy A, Warde-Farley D et al (2017) Brain tumor segmentation with deep neural networks. Med Image Anal 35:18–31

    Article  Google Scholar 

  29. Naceur MB, Saouli R, Akil M, Kachouri R (2018) Fully automatic brain tumor segmentation using end-to-end incremental deep neural networks in MRI images. Comput Methods Programs Biomed 166:39–49

    Article  Google Scholar 

  30. Pereira S, Pinto A, Alves V, Silva CA (2016) Brain tumor segmentation using convolutional neural networks in MRI images. IEEE Trans Med Imaging 35:1240–1251

    Article  Google Scholar 

  31. AlBadawy EA, Saha A, Mazurowski MA (2018) Deep learning for segmentation of brain tumors: Impact of cross-institutional training and testing. Med Phys 45:1150–1158

    Article  Google Scholar 

  32. Rios Velazquez E, Meier R, Dunn WD Jr et al (2015) Fully automatic GBM segmentation in the TCGA-GBM dataset: prognosis and correlation with VASARI features. Sci Rep 5:16822

    Article  CAS  Google Scholar 

  33. Labussière M, Boisselier B, Mokhtari K et al (2014) Combined analysis of TERT, EGFR, and IDH status defines distinct prognostic glioblastoma classes. Neurology 83:1200–1206

    Article  Google Scholar 

  34. Narang S, Lehrer M, Yang D, Lee J, Rao A (2016) Radiomics in glioblastoma: current status, challenges and potential opportunities. Transl Cancer Res 5:383–397

  35. Sanghani P, Ang BT, King NKK, Ren H (2018) Overall survival prediction in glioblastoma multiforme patients from volumetric, shape and texture features using machine learning. Surg Oncol 27:709–714

    Article  Google Scholar 

  36. Martín-Landrove M, Brú A, Rueda-Toicen A, Torres-Hoyos F (2016) Tumor growth in the brain: complexity and fractalitythe fractal geometry of the brain. In: Di Ieva A (ed) The Fractal Geometry of the Brain. Springer, pp:351–369

  37. Karperien A (2013) FracLac for ImageJ. Charles Sturt University

  38. Lopez CJ, Nagornaya N, Parra NA et al (2017) Association of radiomics and metabolic tumor volumes in radiation treatment of glioblastoma multiforme. Int J Radiat Oncol Biol Phys 97:586–595

    Article  Google Scholar 

  39. Osman AFI (2019) A multi-parametric MRI-based radiomics signature and a practical ML model for stratifying glioblastoma patients based on survival toward precision oncology. Front Comput Neurosci 13:58

    Article  Google Scholar 

Download references

Funding

The authors declare that this work has not received any funding.

Author information

Authors and Affiliations

Authors

Contributions

APB devised the research topic and wrote the final manuscript. JK provided critical literary feedback. MA provided extensive feedback regarding the pathological classification of glioblastoma and current advances in terminology. The authors read and approved the final manuscript.

Corresponding author

Correspondence to Abhishta Bhandari.

Ethics declarations

Ethics approval and consent to participate

Not applicable

Consent for publication

Not applicable

Competing interests

The authors declare that they have no competing interests.

Additional information

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Bhandari, A., Koppen, J. & Agzarian, M. Convolutional neural networks for brain tumour segmentation. Insights Imaging 11, 77 (2020). https://doi.org/10.1186/s13244-020-00869-4

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s13244-020-00869-4

Keywords