SlideShare a Scribd company logo
BOHR International Journal of Internet of Things, Artificial Intelligence and Machine Learning
2022, Vol. 1, No. 1, pp. 79–84
https://doi.org/10.54646/bijiam.013
www.bohrpub.com
Enhanced 3D Brain Tumor Segmentation Using Assorted
Precision Training
Adwaitt Pandya1, Ozioma Collins Oguine2, Harita Bhargava1 and Shrikant Zade1
1Computer Science Department, Oriental Institute of Science and Technology, Bhopal, India
2Computer Science Department, University of Abuja, Nigeria
E-mail: adwaitt1999@gmail.com; oziomaoguine007@gmail.com; haritabhargava28@gmail.com;
cdzshrikant@gmail.com
Abstract. A brain tumor is a medical disorder faced by individuals of all demographics. Medically, it is described
as the spread of nonessential cells close to or throughout the brain. Symptoms of this ailment include headaches,
seizures, and sensory changes. This research explores two main categories of brain tumors: benign and malignant.
Benign spreads steadily, and malignant express growth makes it dangerous. Early identification of brain tumors is a
crucial factor for the survival of patients. This research provides a state-of-the-art approach to the early identification
of tumors within the brain. We implemented the SegResNet architecture, a widely adopted architecture for three-
dimensional segmentation, and trained it using the automatic multi-precision method. We incorporated the dice loss
function and dice metric for evaluating the model. We got a dice score of 0.84. For the tumor core, we got a dice score
of 0.84; for the whole tumor, 0.90; and for the enhanced tumor, we got a score of 0.79.
Keywords: Brain tumor, 3D segmentation, brain tumor segmentation, 3D convolutional neural network, fully
convolutional neural network.
INTRODUCTION
A brain tumor is an abnormal growth of cells in the
brain that may or may not be cancerous. Tumors are
generally classified into two classes: benign and malignant.
Benign tumors are considered non-cancerous, i.e., they
grow locally and do not spread to other tissues. They can be
fatal if they develop near vital organs like the brain, even
after being non-cancerous. Malignant tumors are consid-
ered cancerous. New cells are constantly produced in our
body to replace the old ones; sometimes DNA gets dam-
aged during this renewal process, so the new cells develop
abnormally. These cells continue to multiply faster, thus
forming a tumor. Malignant tumors can spread and affect
other tissues. Tumors that affect the central nervous system
are known as gliomas. Following are the constituents of
gliomas:
Edema: Finger-like projection, an agglomerate of fluid or
water. FLAIR and T2-weighted sequences produce the best
results.
Necrosis: Collection of dead cells. Best seen in the T1 post-
contrast sequence.
Enhancing tumor: Indicates breakdown of the blood–brain
barrier. Seen in T1c post-contrast sequence.
Non-enhancing tumor: Seen in regions not included in
edema, necrosis, or enhancing tumor.
There are many reasons why a person can have a brain
tumor-like growth of cells uncontrollably in the brain due
to mutation or defect in a gene. This is a reason for causing
a brain tumor. Exposure to large amounts of X-rays is also
an environmental cause which leads to the development of
brain tumors. A tumor’s effects on your body are evaluated
by its size, location, and growth rate. General symptoms
include changes in the pattern of headaches, nausea or
vomiting, vision problems like blurred vision, tiredness,
speech and hearing difficulties, and memory problems.
Early diagnosis of a tumor provides the patient with
the best chance of successful treatment. There are fewer
chances of survival, a high cost of treatment, and many
more problems arise if the care is delayed.
79
80 Adwaitt Pandya et al.
Early diagnosis improves the outcomes of treatment.
Diagnosing a brain tumor generally begins with a mag-
netic resonance imaging (MRI) scan. MRI is an imaging
technique that utilizes magnetic fields and radio waves
to create detailed images of the organs and tissues. MRI
can be used to measure the tumor’s size. For diagnosing
a tumor, the accuracy of conventional MRI is generally
satisfactory, but we should not rely heavily on it. One of the
important and efficient techniques for diagnosing tumors
is brain tumor segmentation. The technique of separating
tumors from other brain parts in an MRI scan of the brain
is called brain tumor segmentation. It separates tumors
from normal brain tissues. Tumor segmentation helps in
correctly identifying the spatial location of a tumor. Brain
tumor segmentation proves to be useful for diagnosis
and treatment planning. However, sometimes it is hard to
segment the tumor because of irregular boundaries in MRI
scans. If a tumor is detected on time due to segmentation,
it will prove to be very convenient from the doctor’s
perspective to commence treatment planning as soon as
possible.
Our dataset consists of a neuroimaging informatics tech-
nology initiative (NIFTI) file format. About 10 years ago,
the NIFTI file format was envisioned as a replacement
for the 7.5 file format for analysis. In image informatics
for neuroscience and even neuroradiology research, NIFTI
files are frequently employed. For our project, we used the
brain tumor segmentation (BraTS) dataset. The Radiolog-
ical Association of North America (RSNA), the American
Society of Neuroradiology (ASNR), and the Medical Image
Computing and Computer-Assisted Interventions (MIC-
CAI) society are working together to arrange the BraTS
challenge. The model used by us for segmentation is “Seg-
ResNet,” and we have trained it on the BraTS 2021 [10–14]
(Task 1) dataset. The following work contains a detailed
description of the dataset, proposed methodology, compar-
ative analysis, and results.
THEORETICAL BACKGROUND
Technology Stack
We used the Kaggle notebooks for training, validation,
and testing our model. By default, Kaggle provides P100
GPUs for all notebooks with 16 GB of RAM and 16 GB of
storage space. We used PyTorch version 1.10.0 and MONAI
0.7.0 for coding. We also used intensity normalization [9]
version 2.1.1 for normalizing intensities.
Dataset
We used the BraTS 2021 task-1 dataset. The collection
includes segmentation masks, Native (T1), T1-weighted
(T1Gd), T2-weighted (T2), and T2-Fluid Attenuated Inver-
sion Recovery (Recovery) NIFTI volumes for 1251 individ-
uals from various sources and in axial, sagittal, and coronal
orientation. All of the files were NIFTI volumes containing
240 image slices. Each image was 240 × 155 in size.
Literature Survey
For the purpose of segmenting brain tumors, Havaei et al.
proposed a CNN architecture that not only utilized local
and global features concurrently. They obtained dice scores
of 0.85 for segmenting the entire tumor, 0.78 for segmenting
the tumor core, and 0.73 for improving tumor segmenta-
tion [1].
Pereira et al. [2] explored a way to counter large spa-
tial and structural variability by incorporating small 3*3
kernels in their proposed architecture. They attained a
dice score of 0.88 on the whole tumor segmentation; for
tumor core segmentation, they were able to get a score of
0.83, and for enhancing tumor, they got 0.77. Myronenko
et al. [3] described an encoder-decoder-like architecture
and a variational autoencoder branch. Their model yielded
a dice score of 0.81, 0.90, and 0.86 on enhancing tumor,
whole tumor, and tumor core segmentation.
An anisotropic and dilated convolution filter-based cas-
cade of a fully convolutional neural network was proposed
by Wang et al. [4]. They broke the issue down into a series
of binary categorization issues. On the entire tumor, tumor
core, and improving tumor segmentation, their model
received scores of 0.78, 0.87, and 0.77, respectively.
Mohammadreza et al. [5] extracted text-on-descriptor
features such as histograms and first-order intensities,
which were then fed into a Random Forest Classifier. They
scored 0.84 on the whole tumor, 0.82 on the enhancing
tumor, and 0.78 on the tumor core segmentation.
Lyu et al. [6] used a 2-stage model; for stage 1, they
used an encoder-decoder-like architecture and variation
autoencoder regularization. In stage 2, the network uses
attention gates and is trained on a dataset formed by
stage 1 output. Their dice scores for the whole tumor,
tumor core, and enhancing tumor were 0.87, 0.83, and 0.82,
respectively.
METHODOLOGY
Preprocessing: The dataset comes from various sources.
We used the intensity normalization technique described
by Shinohara et al. [9] over every image of every modality
(FLAIR, T1w, T1wCE, and T2w) to solve the difference
in intensities. Separate normalizers were used for each
modality and were trained on the images belonging to their
respective modalities. Since the images were in different
orientations, we oriented all of them in the RAS orienta-
tion.
It is imperative to note that certain types of tumors
are best seen in different modalities, like edema, which is
best seen in T2-weighted sequences and FLAIR images.
Necrosis is best visible in the T1 post-contrast sequence,
Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training 81
Figure 1. (a) Two randomly selected images from the T1wCE modality. (b) Intensities of the two images before normalization.
(c) Intensities of the two images after normalization.
Figure 2. Augmented samples of different modalities. Each “image channel” corresponds to a different modality.
Figure 3. Brain tumor segmentation masks.
and an enhancing tumor is best seen in the T1c post-
contrast sequence [15].
Image Augmentations: We cropped the image, keeping
the region of interest of 224*224*144. We then randomly
flipped the images across all three axes and randomly
scaled and shifted the intensities. We used no augmenta-
tions for validation or testing.
Loss Functions and Metric: We used the dice loss func-
tion [17] and metric, a region-based loss function, to cal-
culate similarities. Mathematically, the dice coefficient can
be expressed as follows:
D =
2 ∑N
i pigi
∑N
i p2
i + ∑N
i g2
i
where D is the dice coefficient, p and g are pairs of cor-
responding pixel values [18]. For training, we added a
small constant to the denominator to tackle the scenarios
in which the denominator becomes less than 0.
Hyperparameters: We initialized the model with 16 filters,
keeping the number of input channels equal to 4 and
yielding an output of 3 channels, corresponding to the
three classes discussed earlier. We also applied a dropout
with a dropout rate of 0.2. Due to memory constraints,
we kept the batch size to 1. We used the Adam optimizer
for training with a learning rate of 0.0001. We applied
L2 regularization with a regularization coefficient set to
0.00001 and trained the model for 10 epochs.
Model Architecture: We used the SegResNet architecture
with the number of downsampling blocks in each layer
being 1, 2, 2, and 4, respectively. The number of upsam-
pling blocks in each layer is 1, 1, and 1, respectively.
Training: We trained our model for 10 epochs and saved
the best-performing model. We modified the traditional
82 Adwaitt Pandya et al.
Figure 4. (a) Average loss (left) and average dice score (right) per epoch. (b) Dice score for tumor core (left), whole tumor (center), and
enhanced tumor (right).
Figure 5. The model’s output (top) is compared to the actual tumor (bottom). The yellow region is the enhanced tumor, the yellow and
green regions constitute the tumor core, and the yellow, red, and green regions constitute the whole tumor.
Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training 83
Table 1. Comparison of dice scores obtained by different methods.
Researches Number of Test Images Dice Scores
Havaei et al. [1] 200 2d slices and approximately 6000 2D images WT = 0.85, TC = 0.78, ET = 0.73
Pereira et al. [2] The training set contains 20 HGG and 10 LGG. WT = 0.88, TC = 0.83, ET = 0.77
Myronenko et al. [3] Training dataset included 285 cases (210 HGG and 75 LGG). ET = 0.81, WT = 0.90, CT = 0.86
Wang et al. [4] The training set contains images from 285 patients (210 HGG and 75
LGG).
WT = 0.7831, CT = 0.8739, ET = 0.7748
Jones et al. [5] The dataset was tested on 11 multimodal images and the BRATS 2013
clinical dataset using 30 multimodal images.
WT = 0.80, TC = 0.89
Lyu et al. [6] The BraTS 2020 dataset containing 259 HGG and 110 LGG cases ET = 0.79, WT = 0.90, TC = 0.83
Proposed 1251 NIFTI volumes of 240 image slices each ET = 0.71, WT = 0.90, TC = 0.84
training technique and used the mixed-precision [16] train-
ing method, which enhances performance and efficiency
and reduces memory requirements. We used automatic
mixed precision for both the training and validation tasks.
RESULT ANALYSIS
We converged our loss to 0.11 and got an average dice score
of 0.84 on the validation set. As for the separate classes, our
dice scores were as follows (on the validation set):
TC = 0.84
WT = 0.90
ET = 0.79
On the test set, we got a mean dice score of 0.86; in the
TC class, the dice score was 0.86; in the WT class, it was
0.92; and finally, on ET, it was 0.81.
DISCUSSION
Brain tumor segmentation proves to be an effective tool
for accurately diagnosing the tumor and its constituents.
Our model can segment a tumor from an MRI image
efficiently. The model was trained on 750 NIFTI volumes
and validated and tested on 250 NIFTI volumes. We were
able to get our loss down to 0.11 and got a mean dice
score of 0.84. We believe that more data could significantly
improve the model’s performance for future research.
CONCLUSION
In this study, we used the SegResNet architecture to seg-
ment the brain tumor. Our model produces great results
on 200 test cases. Our model’s best score produced a dice
score of 0.86 on TC, 0.92 on WT, and 0.81 on ET. In contrast,
the mean dice score was 0.84.
DISCLOSURE
The authors declare that they have no competing interests
with anyone in publishing this paper.
AUTHOR CONTRIBUTIONS
All authors made substantial contributions in conscripting
this manuscript and revising it critically for important
intellectual content, agreed to submit it to the current
journal, and approved the final version.
REFERENCES
[1] Havaei, M., Davy, A., Warde-Farley, D., Biard, A., Courville, A.,
Bengio, Y., Pal, C., Jodoin, P.M., & Larochelle, H., (2015). ’Brain
Tumor Segmentation with Deep Neural Networks’, arXiv:1505.03540
[2] Pereira S, Pinto A, Alves V, Silva CA. Brain Tumor Segmentation
Using Convolutional Neural Networks in MRI Images. IEEE Trans
Med Imaging. (2016). May; 35(5) Med Imaging. 1240–1251. Doi:
10.1109/TMI.2016.2538465. Epub 2016 Mar 4. PMID: 26960222.
[3] A. Myronenko, “3D MRI brain tumor segmentation using autoen-
coder regularization”, arXiv:1810.11654, 2018.
[4] G. Wang, W. Li, S. Ourselin, and T. Vercauteren, “Automatic brain
tumor segmentation based on cascaded convolutional neural net-
works with uncertainty estimation” Frontiers in Computational
Neuroscience, 13. https://doi.org/10.3389/fncom.2019.00056,
2019.
[5] Soltaninejad, M., Yang, G., Lambrou, T., Allinson, N., Jones, T. L.,
Barrick, T. R., Howe, F. A., & Ye, X. (2018). Supervised learning-based
multimodal MRI brain tumor segmentation using texture features
from supervoxels. Computer Methods and Programs in Biomedicine,
157, 69–84. https://doi.org/10.1016/j.cmpb.2018.01.003
[6] Lyu, C., & Shu, H. (2021). A two-stage cascade model with vari-
ational autoencoders and attention gates for MRI brain tumor
segmentation. Brainlesion: Glioma, Multiple Sclerosis, Stroke, and
Traumatic Brain Injuries, 435–447. https://doi.org/10.1007/978-
3-030-72084-1_39
[7] Spyridon Bakas, Mauricio Reyes, Andras Jakab, Stefan Bauer,
Markus Rempfler, Alessandro Crimi, Russell Takeshi Shinohara,
Christoph Berger, Sung Min Ha, Martin Rozycki, Marcel Prastawa,
Esther Alberts, Jana Lipkova, John Freymann, Justin Kirby, Michel
Bilello, Hassan Fathallah-Shaykh, Roland Wiest, Jan Kirschke,
Benedikt Wiestler, Rivka Colen, Aikaterini Kotrotsou, Pamela Lam-
ontagne, Daniel Marcus, Mikhail Milchenko, Arash Nazeri, Marc-
Andre Weber, Abhishek Mahajan, Ujjwal Baid, Elizabeth Gerstner,
Dongjin Kwon, Gagan Acharya, Manu Agarwal, Mahbubul Alam,
Alberto Albiol, Antonio Albiol, Francisco J. Albiol, Varghese Alex,
Nigel Allinson, Pedro H. A. Amorim, Abhijit (2019). “Identifying the
Best Machine Learning Algorithms for Brain Tumor Segmentation,
Progression Assessment, and Overall Survival Prediction in the
BRATS Challenge.”
[8] Badrinarayanan, V., Kendall, A., & Cipolla, R. (2017). SegNet: A deep
convolutional encoder-decoder architecture for image segmentation.
84 Adwaitt Pandya et al.
IEEE Transactions on Pattern Analysis and Machine Intelligence,
39(12), 2481–2495. https://doi.org/10.1109/tpami.2016.2644615
[9] Shinohara, R. T., Sweeney, E. M., Goldsmith, J., Shiee, N., Mateen, F.
J., Calabresi, P. A., Jarso, S., Pham, D. L., Reich, D. S., & Crainiceanu,
C. M. (2014). Statistical normalization techniques for magnetic reso-
nance imaging. In NeuroImage: Clinical (Vol. 6, pp. 9–19). Elsevier
BV. https://doi.org/10.1016/j.nicl.2014.08.008
[10] U. Baid, et al. The RSNA-ASNR-MICCAI BraTS 2021 Benchmark
on Brain Tumor Segmentation and Radiogenomic Classification,
arXiv:2107.02314, 2021.
[11] B. H. Menze, A. Jakab, S. Bauer, J. Kalpathy-Cramer, K. Farahani,
J. Kirby, et al. “The Multimodal Brain Tumor Image Segmentation
Benchmark (BRATS),” IEEE Transactions on Medical Imaging 34(10),
1993–2024 (2015) DOI: 10.1109/TMI.2014.2377694
[12] S. Bakas, H. Akbari, A. Sotiras, M. Bilello, M. Rozycki, J.S. Kirby,
et al., “Advancing the Cancer Genome Atlas glioma MRI collections
with expert segmentation labels and radiomic features,” Nature
Scientific Data, 4:170117 (2017) DOI: 10.1038/sdata.2017.117
[13] S. Bakas, H. Akbari, A. Sotiras, M. Bilello, M. Rozycki, J. Kirby, et al.,
“Segmentation Labels and Radiomic Features for the Pre-operative
Scans of the TCGA-GBM collection,” The Cancer Imaging Archive,
2017. DOI: 10.7937/K9/TCIA.2017.KLXWJJ1Q
[14] S. Bakas, H. Akbari, A. Sotiras, M. Bilello, M. Rozycki, J. Kirby, et al.,
“Segmentation Labels and Radiomic Features for the Pre-operative
Scans of the TCGA-LGG collection,” The Cancer Imaging Archive,
2017. DOI: 10.7937/K9/TCIA. 2017.GJQ7R0EF
[15] NPTEL-NOC IITM 2019 (May 6) ‘Segmentation of Brain Tumors
from MRI using Deep Learning,’ https://www.youtube.com/wa
tch?v=PcNqAVNCZrE&t=331s
[16] Paulius Micikevicius and Sharan Narang and Jonah Alben and
Gregory F. Diamos and Erich Elsen and David Garcia and Boris
Ginsburg and Michael Houston and Oleksii Kuchaiev and Ganesh
Venkatesh and Hao Wu (2017). Mixed Precision Training. CoRR,
abs/1710.03740.
[17] Jadon, S. (2020). A survey of loss functions for semantic segmen-
tation. In 2020 IEEE Conference on Computational Intelligence
in Bioinformatics and Computational Biology (CIBCB). 2020 IEEE
Conference on Computational Intelligence in Bioinformatics and
Computational Biology (CIBCB). IEEE. http://doi.org/10.1109/ci
bcb48159.2020.9277638
[18] Tiu, E., 2021. Metrics to Evaluate your Semantic Segmentation
Model. [online] Medium. Available at: <https://towardsdatasci
ence.com/metrics-to-evaluate-your-semantic-segmentation-mode
l-6bcb99639aa2> [Accessed 13 November 2021].

More Related Content

Similar to Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training

ML Project Prseentation.pptx
ML Project Prseentation.pptxML Project Prseentation.pptx
ML Project Prseentation.pptx
KeerthanaKumar44
 
Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...
Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...
Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...
PUNEET TIWARI
 
Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...
Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...
Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...
journalBEEI
 
IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...
IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...
IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...
Iaetsd Iaetsd
 
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
IRJET Journal
 
Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...
IAESIJAI
 
Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...
Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...
Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...Kumar Goud
 
A Survey On Brain Tumor Detection Techniques
A Survey On Brain Tumor Detection TechniquesA Survey On Brain Tumor Detection Techniques
A Survey On Brain Tumor Detection Techniques
IRJET Journal
 
Tumor Detection Based On Symmetry Information
Tumor Detection Based On Symmetry InformationTumor Detection Based On Symmetry Information
Tumor Detection Based On Symmetry Information
IJERA Editor
 
3D Segmentation of Brain Tumor Imaging
3D Segmentation of Brain Tumor Imaging3D Segmentation of Brain Tumor Imaging
3D Segmentation of Brain Tumor Imaging
IJAEMSJORNAL
 
A review on detecting brain tumors using deep learning and magnetic resonanc...
A review on detecting brain tumors using deep learning and  magnetic resonanc...A review on detecting brain tumors using deep learning and  magnetic resonanc...
A review on detecting brain tumors using deep learning and magnetic resonanc...
IJECEIAES
 
Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...
Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...
Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...
IJCSIS Research Publications
 
Bt36430432
Bt36430432Bt36430432
Bt36430432
IJERA Editor
 
A Survey on Segmentation Techniques Used For Brain Tumor Detection
A Survey on Segmentation Techniques Used For Brain Tumor DetectionA Survey on Segmentation Techniques Used For Brain Tumor Detection
A Survey on Segmentation Techniques Used For Brain Tumor Detection
Editor IJMTER
 
MRI Image Segmentation by Using DWT for Detection of Brain Tumor
MRI Image Segmentation by Using DWT for Detection of Brain TumorMRI Image Segmentation by Using DWT for Detection of Brain Tumor
MRI Image Segmentation by Using DWT for Detection of Brain Tumor
ijtsrd
 
Brain Tumor Detection using Neural Network
Brain Tumor Detection using Neural NetworkBrain Tumor Detection using Neural Network
Brain Tumor Detection using Neural Network
ijtsrd
 
IRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
IRJET- A Study on Brain Tumor Detection Algorithms for MRI ImagesIRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
IRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
IRJET Journal
 
diagnostics-12-00961.pdf
diagnostics-12-00961.pdfdiagnostics-12-00961.pdf
diagnostics-12-00961.pdf
marlinadewi2
 

Similar to Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training (20)

ML Project Prseentation.pptx
ML Project Prseentation.pptxML Project Prseentation.pptx
ML Project Prseentation.pptx
 
Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...
Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...
Computer Aided Diagnosis Sytem- A decision support system for clinical Diagno...
 
Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...
Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...
Recognition of brain cancer and cerebrospinal fluid due to the usage of diffe...
 
IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...
IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...
IIirdem mri brain tumour extraction by multi modality magnetic resonance imag...
 
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
 
Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...
 
50120140503014
5012014050301450120140503014
50120140503014
 
Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...
Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...
Ijeee 16-19-a novel approach to brain tumor classification using wavelet and ...
 
A Survey On Brain Tumor Detection Techniques
A Survey On Brain Tumor Detection TechniquesA Survey On Brain Tumor Detection Techniques
A Survey On Brain Tumor Detection Techniques
 
Tumor Detection Based On Symmetry Information
Tumor Detection Based On Symmetry InformationTumor Detection Based On Symmetry Information
Tumor Detection Based On Symmetry Information
 
3D Segmentation of Brain Tumor Imaging
3D Segmentation of Brain Tumor Imaging3D Segmentation of Brain Tumor Imaging
3D Segmentation of Brain Tumor Imaging
 
A review on detecting brain tumors using deep learning and magnetic resonanc...
A review on detecting brain tumors using deep learning and  magnetic resonanc...A review on detecting brain tumors using deep learning and  magnetic resonanc...
A review on detecting brain tumors using deep learning and magnetic resonanc...
 
Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...
Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...
Segmentation of Diffusion Tensor Brain Tumor Images using Fuzzy C-Means Clust...
 
Bt36430432
Bt36430432Bt36430432
Bt36430432
 
A Survey on Segmentation Techniques Used For Brain Tumor Detection
A Survey on Segmentation Techniques Used For Brain Tumor DetectionA Survey on Segmentation Techniques Used For Brain Tumor Detection
A Survey on Segmentation Techniques Used For Brain Tumor Detection
 
MRI Image Segmentation by Using DWT for Detection of Brain Tumor
MRI Image Segmentation by Using DWT for Detection of Brain TumorMRI Image Segmentation by Using DWT for Detection of Brain Tumor
MRI Image Segmentation by Using DWT for Detection of Brain Tumor
 
Brain Tumor Detection using Neural Network
Brain Tumor Detection using Neural NetworkBrain Tumor Detection using Neural Network
Brain Tumor Detection using Neural Network
 
34 107-1-pb
34 107-1-pb34 107-1-pb
34 107-1-pb
 
IRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
IRJET- A Study on Brain Tumor Detection Algorithms for MRI ImagesIRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
IRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
 
diagnostics-12-00961.pdf
diagnostics-12-00961.pdfdiagnostics-12-00961.pdf
diagnostics-12-00961.pdf
 

More from BIJIAM Journal

Air quality forecasting using convolutional neural networks
Air quality forecasting using convolutional neural networksAir quality forecasting using convolutional neural networks
Air quality forecasting using convolutional neural networks
BIJIAM Journal
 
Prevention of fire and hunting in forests using machine learning for sustaina...
Prevention of fire and hunting in forests using machine learning for sustaina...Prevention of fire and hunting in forests using machine learning for sustaina...
Prevention of fire and hunting in forests using machine learning for sustaina...
BIJIAM Journal
 
Object detection and ship classification using YOLO and Amazon Rekognition
Object detection and ship classification using YOLO and Amazon RekognitionObject detection and ship classification using YOLO and Amazon Rekognition
Object detection and ship classification using YOLO and Amazon Rekognition
BIJIAM Journal
 
Machine learning for autonomous online exam frauddetection: A concept design
Machine learning for autonomous online exam frauddetection: A concept designMachine learning for autonomous online exam frauddetection: A concept design
Machine learning for autonomous online exam frauddetection: A concept design
BIJIAM Journal
 
Prognostication of the placement of students applying machine learning algori...
Prognostication of the placement of students applying machine learning algori...Prognostication of the placement of students applying machine learning algori...
Prognostication of the placement of students applying machine learning algori...
BIJIAM Journal
 
Drug recommendation using recurrent neural networks augmented with cellular a...
Drug recommendation using recurrent neural networks augmented with cellular a...Drug recommendation using recurrent neural networks augmented with cellular a...
Drug recommendation using recurrent neural networks augmented with cellular a...
BIJIAM Journal
 
Discrete clusters formulation through the exploitation of optimized k-modes a...
Discrete clusters formulation through the exploitation of optimized k-modes a...Discrete clusters formulation through the exploitation of optimized k-modes a...
Discrete clusters formulation through the exploitation of optimized k-modes a...
BIJIAM Journal
 
Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...
Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...
Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...
BIJIAM Journal
 
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
BIJIAM Journal
 
Role of Artificial Intelligence in Supply Chain Management
Role of Artificial Intelligence in Supply Chain ManagementRole of Artificial Intelligence in Supply Chain Management
Role of Artificial Intelligence in Supply Chain Management
BIJIAM Journal
 
An Internet – of – Things Enabled Smart Fire Fighting System
An Internet – of – Things Enabled Smart Fire Fighting SystemAn Internet – of – Things Enabled Smart Fire Fighting System
An Internet – of – Things Enabled Smart Fire Fighting System
BIJIAM Journal
 
Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...
Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...
Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...
BIJIAM Journal
 
Automation Attendance Systems Approaches: A Practical Review
Automation Attendance Systems Approaches: A Practical ReviewAutomation Attendance Systems Approaches: A Practical Review
Automation Attendance Systems Approaches: A Practical Review
BIJIAM Journal
 
Transforming African Education Systems through the Application of IOT
Transforming African Education Systems through the Application of IOTTransforming African Education Systems through the Application of IOT
Transforming African Education Systems through the Application of IOT
BIJIAM Journal
 
Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...
Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...
Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...
BIJIAM Journal
 
Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...
Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...
Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...
BIJIAM Journal
 

More from BIJIAM Journal (16)

Air quality forecasting using convolutional neural networks
Air quality forecasting using convolutional neural networksAir quality forecasting using convolutional neural networks
Air quality forecasting using convolutional neural networks
 
Prevention of fire and hunting in forests using machine learning for sustaina...
Prevention of fire and hunting in forests using machine learning for sustaina...Prevention of fire and hunting in forests using machine learning for sustaina...
Prevention of fire and hunting in forests using machine learning for sustaina...
 
Object detection and ship classification using YOLO and Amazon Rekognition
Object detection and ship classification using YOLO and Amazon RekognitionObject detection and ship classification using YOLO and Amazon Rekognition
Object detection and ship classification using YOLO and Amazon Rekognition
 
Machine learning for autonomous online exam frauddetection: A concept design
Machine learning for autonomous online exam frauddetection: A concept designMachine learning for autonomous online exam frauddetection: A concept design
Machine learning for autonomous online exam frauddetection: A concept design
 
Prognostication of the placement of students applying machine learning algori...
Prognostication of the placement of students applying machine learning algori...Prognostication of the placement of students applying machine learning algori...
Prognostication of the placement of students applying machine learning algori...
 
Drug recommendation using recurrent neural networks augmented with cellular a...
Drug recommendation using recurrent neural networks augmented with cellular a...Drug recommendation using recurrent neural networks augmented with cellular a...
Drug recommendation using recurrent neural networks augmented with cellular a...
 
Discrete clusters formulation through the exploitation of optimized k-modes a...
Discrete clusters formulation through the exploitation of optimized k-modes a...Discrete clusters formulation through the exploitation of optimized k-modes a...
Discrete clusters formulation through the exploitation of optimized k-modes a...
 
Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...
Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...
Emotion Recognition Based on Speech Signals by Combining Empirical Mode Decom...
 
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
 
Role of Artificial Intelligence in Supply Chain Management
Role of Artificial Intelligence in Supply Chain ManagementRole of Artificial Intelligence in Supply Chain Management
Role of Artificial Intelligence in Supply Chain Management
 
An Internet – of – Things Enabled Smart Fire Fighting System
An Internet – of – Things Enabled Smart Fire Fighting SystemAn Internet – of – Things Enabled Smart Fire Fighting System
An Internet – of – Things Enabled Smart Fire Fighting System
 
Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...
Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...
Evaluate Sustainability of Using Autonomous Vehicles for the Last-mile Delive...
 
Automation Attendance Systems Approaches: A Practical Review
Automation Attendance Systems Approaches: A Practical ReviewAutomation Attendance Systems Approaches: A Practical Review
Automation Attendance Systems Approaches: A Practical Review
 
Transforming African Education Systems through the Application of IOT
Transforming African Education Systems through the Application of IOTTransforming African Education Systems through the Application of IOT
Transforming African Education Systems through the Application of IOT
 
Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...
Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...
Deep Learning Analysis for Estimating Sleep Syndrome Detection Utilizing the ...
 
Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...
Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...
Robotic Mushroom Harvesting by Employing Probabilistic Road Map and Inverse K...
 

Recently uploaded

AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
ShahidSultan24
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
Standard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - NeometrixStandard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
abh.arya
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
PrashantGoswami42
 
Vaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdfVaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdf
Kamal Acharya
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
Kamal Acharya
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
MuhammadTufail242431
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
R&R Consult
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 

Recently uploaded (20)

AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
Standard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - NeometrixStandard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - Neometrix
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
 
Vaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdfVaccine management system project report documentation..pdf
Vaccine management system project report documentation..pdf
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 

Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training

  • 1. BOHR International Journal of Internet of Things, Artificial Intelligence and Machine Learning 2022, Vol. 1, No. 1, pp. 79–84 https://doi.org/10.54646/bijiam.013 www.bohrpub.com Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training Adwaitt Pandya1, Ozioma Collins Oguine2, Harita Bhargava1 and Shrikant Zade1 1Computer Science Department, Oriental Institute of Science and Technology, Bhopal, India 2Computer Science Department, University of Abuja, Nigeria E-mail: adwaitt1999@gmail.com; oziomaoguine007@gmail.com; haritabhargava28@gmail.com; cdzshrikant@gmail.com Abstract. A brain tumor is a medical disorder faced by individuals of all demographics. Medically, it is described as the spread of nonessential cells close to or throughout the brain. Symptoms of this ailment include headaches, seizures, and sensory changes. This research explores two main categories of brain tumors: benign and malignant. Benign spreads steadily, and malignant express growth makes it dangerous. Early identification of brain tumors is a crucial factor for the survival of patients. This research provides a state-of-the-art approach to the early identification of tumors within the brain. We implemented the SegResNet architecture, a widely adopted architecture for three- dimensional segmentation, and trained it using the automatic multi-precision method. We incorporated the dice loss function and dice metric for evaluating the model. We got a dice score of 0.84. For the tumor core, we got a dice score of 0.84; for the whole tumor, 0.90; and for the enhanced tumor, we got a score of 0.79. Keywords: Brain tumor, 3D segmentation, brain tumor segmentation, 3D convolutional neural network, fully convolutional neural network. INTRODUCTION A brain tumor is an abnormal growth of cells in the brain that may or may not be cancerous. Tumors are generally classified into two classes: benign and malignant. Benign tumors are considered non-cancerous, i.e., they grow locally and do not spread to other tissues. They can be fatal if they develop near vital organs like the brain, even after being non-cancerous. Malignant tumors are consid- ered cancerous. New cells are constantly produced in our body to replace the old ones; sometimes DNA gets dam- aged during this renewal process, so the new cells develop abnormally. These cells continue to multiply faster, thus forming a tumor. Malignant tumors can spread and affect other tissues. Tumors that affect the central nervous system are known as gliomas. Following are the constituents of gliomas: Edema: Finger-like projection, an agglomerate of fluid or water. FLAIR and T2-weighted sequences produce the best results. Necrosis: Collection of dead cells. Best seen in the T1 post- contrast sequence. Enhancing tumor: Indicates breakdown of the blood–brain barrier. Seen in T1c post-contrast sequence. Non-enhancing tumor: Seen in regions not included in edema, necrosis, or enhancing tumor. There are many reasons why a person can have a brain tumor-like growth of cells uncontrollably in the brain due to mutation or defect in a gene. This is a reason for causing a brain tumor. Exposure to large amounts of X-rays is also an environmental cause which leads to the development of brain tumors. A tumor’s effects on your body are evaluated by its size, location, and growth rate. General symptoms include changes in the pattern of headaches, nausea or vomiting, vision problems like blurred vision, tiredness, speech and hearing difficulties, and memory problems. Early diagnosis of a tumor provides the patient with the best chance of successful treatment. There are fewer chances of survival, a high cost of treatment, and many more problems arise if the care is delayed. 79
  • 2. 80 Adwaitt Pandya et al. Early diagnosis improves the outcomes of treatment. Diagnosing a brain tumor generally begins with a mag- netic resonance imaging (MRI) scan. MRI is an imaging technique that utilizes magnetic fields and radio waves to create detailed images of the organs and tissues. MRI can be used to measure the tumor’s size. For diagnosing a tumor, the accuracy of conventional MRI is generally satisfactory, but we should not rely heavily on it. One of the important and efficient techniques for diagnosing tumors is brain tumor segmentation. The technique of separating tumors from other brain parts in an MRI scan of the brain is called brain tumor segmentation. It separates tumors from normal brain tissues. Tumor segmentation helps in correctly identifying the spatial location of a tumor. Brain tumor segmentation proves to be useful for diagnosis and treatment planning. However, sometimes it is hard to segment the tumor because of irregular boundaries in MRI scans. If a tumor is detected on time due to segmentation, it will prove to be very convenient from the doctor’s perspective to commence treatment planning as soon as possible. Our dataset consists of a neuroimaging informatics tech- nology initiative (NIFTI) file format. About 10 years ago, the NIFTI file format was envisioned as a replacement for the 7.5 file format for analysis. In image informatics for neuroscience and even neuroradiology research, NIFTI files are frequently employed. For our project, we used the brain tumor segmentation (BraTS) dataset. The Radiolog- ical Association of North America (RSNA), the American Society of Neuroradiology (ASNR), and the Medical Image Computing and Computer-Assisted Interventions (MIC- CAI) society are working together to arrange the BraTS challenge. The model used by us for segmentation is “Seg- ResNet,” and we have trained it on the BraTS 2021 [10–14] (Task 1) dataset. The following work contains a detailed description of the dataset, proposed methodology, compar- ative analysis, and results. THEORETICAL BACKGROUND Technology Stack We used the Kaggle notebooks for training, validation, and testing our model. By default, Kaggle provides P100 GPUs for all notebooks with 16 GB of RAM and 16 GB of storage space. We used PyTorch version 1.10.0 and MONAI 0.7.0 for coding. We also used intensity normalization [9] version 2.1.1 for normalizing intensities. Dataset We used the BraTS 2021 task-1 dataset. The collection includes segmentation masks, Native (T1), T1-weighted (T1Gd), T2-weighted (T2), and T2-Fluid Attenuated Inver- sion Recovery (Recovery) NIFTI volumes for 1251 individ- uals from various sources and in axial, sagittal, and coronal orientation. All of the files were NIFTI volumes containing 240 image slices. Each image was 240 × 155 in size. Literature Survey For the purpose of segmenting brain tumors, Havaei et al. proposed a CNN architecture that not only utilized local and global features concurrently. They obtained dice scores of 0.85 for segmenting the entire tumor, 0.78 for segmenting the tumor core, and 0.73 for improving tumor segmenta- tion [1]. Pereira et al. [2] explored a way to counter large spa- tial and structural variability by incorporating small 3*3 kernels in their proposed architecture. They attained a dice score of 0.88 on the whole tumor segmentation; for tumor core segmentation, they were able to get a score of 0.83, and for enhancing tumor, they got 0.77. Myronenko et al. [3] described an encoder-decoder-like architecture and a variational autoencoder branch. Their model yielded a dice score of 0.81, 0.90, and 0.86 on enhancing tumor, whole tumor, and tumor core segmentation. An anisotropic and dilated convolution filter-based cas- cade of a fully convolutional neural network was proposed by Wang et al. [4]. They broke the issue down into a series of binary categorization issues. On the entire tumor, tumor core, and improving tumor segmentation, their model received scores of 0.78, 0.87, and 0.77, respectively. Mohammadreza et al. [5] extracted text-on-descriptor features such as histograms and first-order intensities, which were then fed into a Random Forest Classifier. They scored 0.84 on the whole tumor, 0.82 on the enhancing tumor, and 0.78 on the tumor core segmentation. Lyu et al. [6] used a 2-stage model; for stage 1, they used an encoder-decoder-like architecture and variation autoencoder regularization. In stage 2, the network uses attention gates and is trained on a dataset formed by stage 1 output. Their dice scores for the whole tumor, tumor core, and enhancing tumor were 0.87, 0.83, and 0.82, respectively. METHODOLOGY Preprocessing: The dataset comes from various sources. We used the intensity normalization technique described by Shinohara et al. [9] over every image of every modality (FLAIR, T1w, T1wCE, and T2w) to solve the difference in intensities. Separate normalizers were used for each modality and were trained on the images belonging to their respective modalities. Since the images were in different orientations, we oriented all of them in the RAS orienta- tion. It is imperative to note that certain types of tumors are best seen in different modalities, like edema, which is best seen in T2-weighted sequences and FLAIR images. Necrosis is best visible in the T1 post-contrast sequence,
  • 3. Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training 81 Figure 1. (a) Two randomly selected images from the T1wCE modality. (b) Intensities of the two images before normalization. (c) Intensities of the two images after normalization. Figure 2. Augmented samples of different modalities. Each “image channel” corresponds to a different modality. Figure 3. Brain tumor segmentation masks. and an enhancing tumor is best seen in the T1c post- contrast sequence [15]. Image Augmentations: We cropped the image, keeping the region of interest of 224*224*144. We then randomly flipped the images across all three axes and randomly scaled and shifted the intensities. We used no augmenta- tions for validation or testing. Loss Functions and Metric: We used the dice loss func- tion [17] and metric, a region-based loss function, to cal- culate similarities. Mathematically, the dice coefficient can be expressed as follows: D = 2 ∑N i pigi ∑N i p2 i + ∑N i g2 i where D is the dice coefficient, p and g are pairs of cor- responding pixel values [18]. For training, we added a small constant to the denominator to tackle the scenarios in which the denominator becomes less than 0. Hyperparameters: We initialized the model with 16 filters, keeping the number of input channels equal to 4 and yielding an output of 3 channels, corresponding to the three classes discussed earlier. We also applied a dropout with a dropout rate of 0.2. Due to memory constraints, we kept the batch size to 1. We used the Adam optimizer for training with a learning rate of 0.0001. We applied L2 regularization with a regularization coefficient set to 0.00001 and trained the model for 10 epochs. Model Architecture: We used the SegResNet architecture with the number of downsampling blocks in each layer being 1, 2, 2, and 4, respectively. The number of upsam- pling blocks in each layer is 1, 1, and 1, respectively. Training: We trained our model for 10 epochs and saved the best-performing model. We modified the traditional
  • 4. 82 Adwaitt Pandya et al. Figure 4. (a) Average loss (left) and average dice score (right) per epoch. (b) Dice score for tumor core (left), whole tumor (center), and enhanced tumor (right). Figure 5. The model’s output (top) is compared to the actual tumor (bottom). The yellow region is the enhanced tumor, the yellow and green regions constitute the tumor core, and the yellow, red, and green regions constitute the whole tumor.
  • 5. Enhanced 3D Brain Tumor Segmentation Using Assorted Precision Training 83 Table 1. Comparison of dice scores obtained by different methods. Researches Number of Test Images Dice Scores Havaei et al. [1] 200 2d slices and approximately 6000 2D images WT = 0.85, TC = 0.78, ET = 0.73 Pereira et al. [2] The training set contains 20 HGG and 10 LGG. WT = 0.88, TC = 0.83, ET = 0.77 Myronenko et al. [3] Training dataset included 285 cases (210 HGG and 75 LGG). ET = 0.81, WT = 0.90, CT = 0.86 Wang et al. [4] The training set contains images from 285 patients (210 HGG and 75 LGG). WT = 0.7831, CT = 0.8739, ET = 0.7748 Jones et al. [5] The dataset was tested on 11 multimodal images and the BRATS 2013 clinical dataset using 30 multimodal images. WT = 0.80, TC = 0.89 Lyu et al. [6] The BraTS 2020 dataset containing 259 HGG and 110 LGG cases ET = 0.79, WT = 0.90, TC = 0.83 Proposed 1251 NIFTI volumes of 240 image slices each ET = 0.71, WT = 0.90, TC = 0.84 training technique and used the mixed-precision [16] train- ing method, which enhances performance and efficiency and reduces memory requirements. We used automatic mixed precision for both the training and validation tasks. RESULT ANALYSIS We converged our loss to 0.11 and got an average dice score of 0.84 on the validation set. As for the separate classes, our dice scores were as follows (on the validation set): TC = 0.84 WT = 0.90 ET = 0.79 On the test set, we got a mean dice score of 0.86; in the TC class, the dice score was 0.86; in the WT class, it was 0.92; and finally, on ET, it was 0.81. DISCUSSION Brain tumor segmentation proves to be an effective tool for accurately diagnosing the tumor and its constituents. Our model can segment a tumor from an MRI image efficiently. The model was trained on 750 NIFTI volumes and validated and tested on 250 NIFTI volumes. We were able to get our loss down to 0.11 and got a mean dice score of 0.84. We believe that more data could significantly improve the model’s performance for future research. CONCLUSION In this study, we used the SegResNet architecture to seg- ment the brain tumor. Our model produces great results on 200 test cases. Our model’s best score produced a dice score of 0.86 on TC, 0.92 on WT, and 0.81 on ET. In contrast, the mean dice score was 0.84. DISCLOSURE The authors declare that they have no competing interests with anyone in publishing this paper. AUTHOR CONTRIBUTIONS All authors made substantial contributions in conscripting this manuscript and revising it critically for important intellectual content, agreed to submit it to the current journal, and approved the final version. REFERENCES [1] Havaei, M., Davy, A., Warde-Farley, D., Biard, A., Courville, A., Bengio, Y., Pal, C., Jodoin, P.M., & Larochelle, H., (2015). ’Brain Tumor Segmentation with Deep Neural Networks’, arXiv:1505.03540 [2] Pereira S, Pinto A, Alves V, Silva CA. Brain Tumor Segmentation Using Convolutional Neural Networks in MRI Images. IEEE Trans Med Imaging. (2016). May; 35(5) Med Imaging. 1240–1251. Doi: 10.1109/TMI.2016.2538465. Epub 2016 Mar 4. PMID: 26960222. [3] A. Myronenko, “3D MRI brain tumor segmentation using autoen- coder regularization”, arXiv:1810.11654, 2018. [4] G. Wang, W. Li, S. Ourselin, and T. Vercauteren, “Automatic brain tumor segmentation based on cascaded convolutional neural net- works with uncertainty estimation” Frontiers in Computational Neuroscience, 13. https://doi.org/10.3389/fncom.2019.00056, 2019. [5] Soltaninejad, M., Yang, G., Lambrou, T., Allinson, N., Jones, T. L., Barrick, T. R., Howe, F. A., & Ye, X. (2018). Supervised learning-based multimodal MRI brain tumor segmentation using texture features from supervoxels. Computer Methods and Programs in Biomedicine, 157, 69–84. https://doi.org/10.1016/j.cmpb.2018.01.003 [6] Lyu, C., & Shu, H. (2021). A two-stage cascade model with vari- ational autoencoders and attention gates for MRI brain tumor segmentation. Brainlesion: Glioma, Multiple Sclerosis, Stroke, and Traumatic Brain Injuries, 435–447. https://doi.org/10.1007/978- 3-030-72084-1_39 [7] Spyridon Bakas, Mauricio Reyes, Andras Jakab, Stefan Bauer, Markus Rempfler, Alessandro Crimi, Russell Takeshi Shinohara, Christoph Berger, Sung Min Ha, Martin Rozycki, Marcel Prastawa, Esther Alberts, Jana Lipkova, John Freymann, Justin Kirby, Michel Bilello, Hassan Fathallah-Shaykh, Roland Wiest, Jan Kirschke, Benedikt Wiestler, Rivka Colen, Aikaterini Kotrotsou, Pamela Lam- ontagne, Daniel Marcus, Mikhail Milchenko, Arash Nazeri, Marc- Andre Weber, Abhishek Mahajan, Ujjwal Baid, Elizabeth Gerstner, Dongjin Kwon, Gagan Acharya, Manu Agarwal, Mahbubul Alam, Alberto Albiol, Antonio Albiol, Francisco J. Albiol, Varghese Alex, Nigel Allinson, Pedro H. A. Amorim, Abhijit (2019). “Identifying the Best Machine Learning Algorithms for Brain Tumor Segmentation, Progression Assessment, and Overall Survival Prediction in the BRATS Challenge.” [8] Badrinarayanan, V., Kendall, A., & Cipolla, R. (2017). SegNet: A deep convolutional encoder-decoder architecture for image segmentation.
  • 6. 84 Adwaitt Pandya et al. IEEE Transactions on Pattern Analysis and Machine Intelligence, 39(12), 2481–2495. https://doi.org/10.1109/tpami.2016.2644615 [9] Shinohara, R. T., Sweeney, E. M., Goldsmith, J., Shiee, N., Mateen, F. J., Calabresi, P. A., Jarso, S., Pham, D. L., Reich, D. S., & Crainiceanu, C. M. (2014). Statistical normalization techniques for magnetic reso- nance imaging. In NeuroImage: Clinical (Vol. 6, pp. 9–19). Elsevier BV. https://doi.org/10.1016/j.nicl.2014.08.008 [10] U. Baid, et al. The RSNA-ASNR-MICCAI BraTS 2021 Benchmark on Brain Tumor Segmentation and Radiogenomic Classification, arXiv:2107.02314, 2021. [11] B. H. Menze, A. Jakab, S. Bauer, J. Kalpathy-Cramer, K. Farahani, J. Kirby, et al. “The Multimodal Brain Tumor Image Segmentation Benchmark (BRATS),” IEEE Transactions on Medical Imaging 34(10), 1993–2024 (2015) DOI: 10.1109/TMI.2014.2377694 [12] S. Bakas, H. Akbari, A. Sotiras, M. Bilello, M. Rozycki, J.S. Kirby, et al., “Advancing the Cancer Genome Atlas glioma MRI collections with expert segmentation labels and radiomic features,” Nature Scientific Data, 4:170117 (2017) DOI: 10.1038/sdata.2017.117 [13] S. Bakas, H. Akbari, A. Sotiras, M. Bilello, M. Rozycki, J. Kirby, et al., “Segmentation Labels and Radiomic Features for the Pre-operative Scans of the TCGA-GBM collection,” The Cancer Imaging Archive, 2017. DOI: 10.7937/K9/TCIA.2017.KLXWJJ1Q [14] S. Bakas, H. Akbari, A. Sotiras, M. Bilello, M. Rozycki, J. Kirby, et al., “Segmentation Labels and Radiomic Features for the Pre-operative Scans of the TCGA-LGG collection,” The Cancer Imaging Archive, 2017. DOI: 10.7937/K9/TCIA. 2017.GJQ7R0EF [15] NPTEL-NOC IITM 2019 (May 6) ‘Segmentation of Brain Tumors from MRI using Deep Learning,’ https://www.youtube.com/wa tch?v=PcNqAVNCZrE&t=331s [16] Paulius Micikevicius and Sharan Narang and Jonah Alben and Gregory F. Diamos and Erich Elsen and David Garcia and Boris Ginsburg and Michael Houston and Oleksii Kuchaiev and Ganesh Venkatesh and Hao Wu (2017). Mixed Precision Training. CoRR, abs/1710.03740. [17] Jadon, S. (2020). A survey of loss functions for semantic segmen- tation. In 2020 IEEE Conference on Computational Intelligence in Bioinformatics and Computational Biology (CIBCB). 2020 IEEE Conference on Computational Intelligence in Bioinformatics and Computational Biology (CIBCB). IEEE. http://doi.org/10.1109/ci bcb48159.2020.9277638 [18] Tiu, E., 2021. Metrics to Evaluate your Semantic Segmentation Model. [online] Medium. Available at: <https://towardsdatasci ence.com/metrics-to-evaluate-your-semantic-segmentation-mode l-6bcb99639aa2> [Accessed 13 November 2021].