Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 24
Published by: Longman Publishers www.jst.org.in
BRAIN TUMOR DETECTION USING CONVOLUTIONAL
NEURAL NET WORK
SWETHA SASTRY, M.SWETHA, P.SRILATHA, K.AMULYA
ASSISTANTPROFESSOR1
, UG SCHOLAR 2, 3&4
DEPARTMENT OF CSE, MALLA REDDY ENGINEERING COLLEGE FOR WOMEN,MAISAMMAGUDA, DHULAPALLY
KOMPALLY, MEDCHAL RD, M, SECUNDERABAD, TELANGANA 500100
To Cite this Article
SWETHA SASTRY, M.SWETHA, P.SRILATHA, K.AMULYA, BRAIN TUMOR DETECTION USING
CONVOLUTIONAL NEURAL NET WORK” ”,Journal of Science and Technology, Vol. 07, Issue 09,-November
2022, pp24-31
Article Info
Received: 29-09-2022 Revised: 18-09-2022 Accepted: 28-10-2022 Published: 14-11-2022
ABSTRACT—Brain tumor is the main threat among the people. But currently, it become more
advanced because of the many Machine Learning techniques. Magnetic Resonance Imaging is
the greatest technique among all the image processing techniques which scans the human body
and gives a clear resolution of the tumors in an improved quality image. The fundamentals of
MRI are to develop images based on magnetic field and radio waves of the anatomy of the body.
The major area of segmentation of images is medical image processing. Better results are
provided by MRI images than CT scan, Xrays etc. Nowadays the automatic tumor detection in
large spatial and structural variability. Recently Convolutional Neural Network plays an
important role in medical field and computer vision. One of its application is the identification of
brain tumor. Here, the pre-processing technique is used to convert normal images to grayscale
values because it contains equal intensity but in MRI, RGB content is included. Then filtering is
used to remove the unwanted noises using median and high pass filter for better quality of
images. The deeper architecture design in CNN is performed using small kernels. Finally, the
effect of using this network for segmentation of tumor from MRI images is evaluated with better
results.
I. INTRODUCTION Magnetic resonance Imaging (MRI) provides brief information about
brain tumor anatomy, cellular structure and vascular supply, making it a vital tool for the
effective diagnosis, treatment and monitoring of the disease. Magnetic resonance imaging (MRI)
is a non-invasive medical test that helps physicians diagnose and treat medical conditions. MRI
Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 25
Published by: Longman Publishers www.jst.org.in
uses a powerful magnetic field, radio frequency pulses and a computer to produce detailed
pictures of organs, soft tissues, bone and virtually all other internal body structures. The images
can then be inspected on a computer monitor, transmitted electronically, printed or copied to a
CD. MRI does not use ionizing radiation (x-rays). Detailed MRI images allow physicians to
figure out various parts of the body and resolve the presence of certain diseases. Automated brain
tumor detection from MRI images is one of the most demanding tasks in today’s modern medical
imaging research. Automatic detection requires brain image segmentation, which is the process
of separating the image into distinct regions, is one of the most vital and demanding aspect of
computer aided clinical diagnostic tools. Noises present in the Brain MRI images are
multiplicative noises and reductions of these noises are complex task. These makes accurate
`segmentation of brain images a challenge. However, accurate segmentation of the MRI images
is very vital and crucial for the exact diagnosis by computer aided clinical tools. A large variety
of algorithms for segmentation of MRI images had been developed. Surgical planning, post-
surgical assessment, abnormality detection, and many other medical applications require medical
image segmentation. In spite of wide number of automatic and semi-automatic image
segmentation techniques, they fail in most cases largely because of unknown and irregular noise,
inhomogeneity, poor contrast.
II. LITERATURE SURVEY In the paper of R. B. Dubey, he removed noises from the input of
MRI image by using the Gaussian filter. Weierstrass Transform is almost similar to the Gaussian
filter, which involves convolving using a Gaussian Function. The purpose of using Gaussian
filter is to convert the image as a smooth image. The outlook of the image is similar to view
through a translucent screen. Gaussian filter is a type of low pass filter, so by passing the filter in
the high frequency regions of an image remove the noises. But it takes more time to complete the
process and also more details will not be given. Bahadure et al. proposed SVM and BWT
techniques image analysis for MRI-based brain tumor detection and classification. 95% of
accuracy is achieved by using this method, using skull stripping which eliminated all nonbrain
tissues for the detection purpose. Joseph et al. suggested the K-means clustering algorithm for
segmentation of MRI brain images along with morphological filtering for the detection of tumor
images. Support Vector Machine for automated brain tumor classification of MRI images was
proposed by Alfonse and Salem. The author Sachdeva et al. used an Artificial Neural Net- work
Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 26
Published by: Longman Publishers www.jst.org.in
(ANN) and PCA–ANN for the multiclass brain tumor MRI images classification, segmentation
with dataset of 428 MRI images and an accuracy of 75– 90% was achieved.
III. CONVOLUTIONAL NEURAL NETWORK
A. INTRODUCTION TO CNN:
Convolutional Neural Network (CNN) are a biologically- inspired variation of the multilayer
perceptron’s (MLPs). In CNN, neurons contribute weights but in MLPs every neuron has a
separate weight vector. Applying the weights sharing method, neurons are able to achieve
convolutions on the input of the data with the help of convolution filter being composed by the
weights. This process is then succeeded by a pooling action which is a form of non-linear down-
sampling, which decreases the spatial size of the image which decreases the volume of
parameters and computation in the net. Activation function is in between the convolution and
pooling layer. The important function is ReLu layer which is a non-saturating activation function
is correlated element-wise, i.e., f (x) = max (0, x) thresholding at zero. After by using these
layers, the size of the image is decreased and further complex features are obtained.
B. LAYERS OF CNN 1. Convolutional layer 2. ReLu layer 3. Pooling layer 4. Fully connected
layer
C. CONVOLUTIONAL LAYER: In neural networks, the input is in the form of vector,
whereas in CNN the input is a multi-channeled image i.e. three channels. In CNN, the input
image is convolved with the kernel matrix (dot product operation) or filter and the result will be
scalar. The filter is moved along the input image to achieve repeated convolution thus it gives an
output matrix termed as feature map
Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 27
Published by: Longman Publishers www.jst.org.in
D. ReLu Layer The simplest non-linearity is achieved by the pursuing a linear filter by a non-
linear gating function, related identically to every component (point-wise) of a feature map. This
kind of function is termed as Rectified Linear Unit (ReLu layer).Yijk = max {0, Xijk}
E. POOLING LAYER: Later the convolution layer, pooling is achieved to decrease the
dimensionality. This permit to decrease the number of parameters, which both reduces the
combats overfitting and training time.These layers ensample every feature map separately which
decreases the width and height whereas the depth is maintained perfect.
The dimensional of the pooling layer of an input image is 32x32x10. The result of this pooling
layer will be in 16x16x10 feature map. In the output the width and height of the feature map are
split into two whereas there is no change in depth because pooling layer functions separately on
the depth of the input image.
Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 28
Published by: Longman Publishers www.jst.org.in
F. FULLY CONNECTED LAYER: The Fully Connected layer is a traditional Multi-Layer
Perceptron that uses an activation function called SoftMax in the output layer (SVM classifiers
can also be used). The term “Fully Connected” signifies that each neuron in the preceding layer
is connected to each neuron on the adjacent layer. The high-level feature of the input image is
obtained from the output of the convolution and pooling layers. The aim of using the Fully
Connected layer is to use these features for segmenting the image into several classes based on
the training dataset. The output of the fully connected layer is 1D vector of numbers whereas the
output from both convolutional and pooling layers are 3D volumes.
IV RESULTS AND DISCUSSION
A. BLOCK DIAGRAM EXPLANATION The main theme of the project is to extract the
tumor part in the brain image. This can be achieved by using preprocessing, CNN and post-
processing. The feature map is obtained by using kernels. And the back-proportion algorithm is
used to enhance the characteristics the input image. Here, the feature map helps to reduce over
fitting. The detailed description of the process is explained below:
B. INPUT IMAGE The main aim of this project is to find the brain tumor part in the brain
image. This Process is done by using pre-processing, classification via CNN and post-
Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 29
Published by: Longman Publishers www.jst.org.in
processing. The main aim of this project is to find the brain tumor part in the brain image. This
Process is done by using pre-processing, classification via CNN and post-processing.
C. PRE-PROCESSING These pre-processing techniques consist of filtering, image detection,
and image enhancement mentioned in figure. To enhance and smooth the image while processing
the Convolutional neural network preprocessing is used.
D. PATCH EXTRACTION Brain image is patched pixel by pixel and to find the brain tumor
part in the image. There are basically two types of patch-based image models-descriptive and
generative. Descriptive models focus on the extraction of the distinctive features from the given
image so that they can facilitate the task of classifying the image into one of several classes. So,
we can say that they are suitable for the task of classification and recognition. Generative models
preserve the information in an image that is why they are more desirable for the task of
compression and restoration.
E. PATCH PRE-PROCESSING The ultimate goal of the pre-processing is to develop the data
of an image which overcomes the undesired distortions or raise some relevant features of an
image for further processing and analysing the task. Repetition in images is done by pre-
processing. The brightness value is similar to the neighbouring pixels which is identical to one
real object. The distorted pixel in an image can be replaced by average value of neighbouring
pixels.
F. MEDIAN FILTER To retain the vital image details like edges, removal of noise, median
filter has been widely used in image processing. The reason back its comprehensive usage is that
it preserves the edges of the image. As the name indicates, in this every entry is replaced with the
median of its adjacent entries. Salt and pepper noise and poisson’s noise is removed by this filter.
This filter works by moving the whole signal in a pattern. The intensity of the median of the
pixels in the pattern becomes the output intensity. The median is calculated by sorting the pixel
values into the ascending order and replace the pixel value with the calculated middle pixel
value.
G. SEGMENTATION The process of segmentation is dividing an image into parts with
identical properties such as level, grey, colour, brightness, contrast and texture the role of
segmentation is to divide the regions in an image. The aim of segmentation is to extract the
Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 30
Published by: Longman Publishers www.jst.org.in
region of local tumor in the case of medical image segmentation. It is a difficult task because the
medical images are complex and hardly have any linear feature. Several researchers have done
the segmentation techniques in different ways at present from the medical image segmentation
point of view. Here, the segmentation technique is achieved on the basis of grey level using
convolutional neural network.
CONCLUSION The main theme of this project is to study the automatic brain tumor analysis
with high accuracy, performance and low complexity. Fuzzy C Means (FCM) logic is performed
by conventional brain tumor based on its segmentation, shape and texture of feature extraction,
Support Vector Machines (SVMs) and Deep Neural Network (DNN) based division are carried
out. There is low complexity. The time required for computation is high and there will be low
accuracy. To avoid the low accuracy and high computation time, the Convolutional Neural
Network (CNN) is established in the scheme. The result will be classified as tumor and normal
images of brain. CNN comes under the technique of deep learning, which consists of chain feed
forward layers. Python language can also used for working. Database based on image net is used
for classification. Pre trained models are performed so that the training is executed only for final
layer. In CNN, the results are obtained in 3D volume i.e. raw pixel value with depth, width and
height. High accuracy is obtained by using Gradient decent based loss function. Here the
calculation is obtained by training accuracy, validation accuracy and validation loss. Here, the
validation loss is very low whereas the validation accuracy is high. The training accuracy will be
97.5%.
REFERENCES
1. P. Rangne, P. Bhombe and P. Welankiwar, "Brain Tumor Extraction from MRI Images Using
MATLAB", Volume 5 - 2020, Issue 9 - September, vol. 5, no. 9, pp. 436-439, 2020. Available:
10.38124/ijisrt20sep102.
2. T. Logeswari and M. Karnan, "An Enhanced Implementation of Brain Tumor Detection Using
Segmentation Based on Soft Computing", International Journal of Computer Theory and
Engineering, pp. 586-590, 2010. Available: 10.7763/ijcte.2010.v2.206.
Journal of Science and Technology
ISSN: 2456-5660 Volume 7, Issue 09 (November 2022)
www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31
Page | 31
Published by: Longman Publishers www.jst.org.in
3. E. Hassan and A. Aboshgifa, "Detecting Brain Tumour from Mri Image Using Matlab GUI
Programme", International Journal of Computer Science & Engineering Survey, vol. 6, no. 6, pp.
47- 60, 2015. Available: 10.5121/ijcses.2015.6604.
4. M. Khan and M. Syed, "Image Processing Techniques for Automatic Detection of Tumor in
Human Brain Using SVM", IJARCCE, vol. 4, no. 4, pp. 541-544, 2015. Available:
10.17148/ijarcce.2015.44125.
5. G. Selim, N. El- Amary and D. Dahab, "Force Signal Tuning for a Surgical Robotic Arm
Using PID Controller", International Journal of Computer Theory and Engineering, pp. 148-152,
2012. Available: 10.7763/ijcte.2012.v4.440

More Related Content

PDF
Automated diagnosis of brain tumor classification and segmentation of magneti...
PDF
Brain Tumor Detection using Neural Network
PDF
Convolutional Neural Network Based Method for Accurate Brain Tumor Detection ...
PDF
Brain tumor classification in magnetic resonance imaging images using convol...
PDF
DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...
PDF
Brain Tumor Detection using CNN
PDF
Brain tumor detection using cnn
PDF
IRJET- Brain Tumor Detection using Deep Learning
Automated diagnosis of brain tumor classification and segmentation of magneti...
Brain Tumor Detection using Neural Network
Convolutional Neural Network Based Method for Accurate Brain Tumor Detection ...
Brain tumor classification in magnetic resonance imaging images using convol...
DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...
Brain Tumor Detection using CNN
Brain tumor detection using cnn
IRJET- Brain Tumor Detection using Deep Learning

Similar to ugc carelist journals ugc carelist journals (20)

PDF
Screening Brain Tumors from MRI Imagesw with Deep Learning Approaches
PPT
Brain
PPTX
Your wish you too happy birthday to you too
PDF
IRJET- Brain MRI Image Processing & Prediction of Cancer Stage Including ...
PDF
Survey on “Brain Tumor Detection Using Deep Learning
PDF
IRJET- Brain Tumor Detection using Convolutional Neural Network
PDF
Overview of convolutional neural networks architectures for brain tumor segm...
PDF
Brain Tumor - Final Presentation.pdf
PDF
A deep learning approach for brain tumor detection using magnetic resonance ...
PDF
IRJET- Brain Tumor Detection and Classification with Feed Forward Back Propag...
PDF
IRJET- Image Classification using Deep Learning Neural Networks for Brain...
PDF
Hybrid model for detection of brain tumor using convolution neural networks
PDF
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
PDF
3D Segmentation of Brain Tumor Imaging
PDF
Brain tumor classification using artificial neural network on mri images
PDF
Brain Tumor Detection From MRI Image Using Deep Learning
PPTX
Brain Tumor Detection Using Deep Neural Network.pptx
PDF
IRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
PPTX
Ph. D. PPT brain tumour detection using AI.pptx
Screening Brain Tumors from MRI Imagesw with Deep Learning Approaches
Brain
Your wish you too happy birthday to you too
IRJET- Brain MRI Image Processing & Prediction of Cancer Stage Including ...
Survey on “Brain Tumor Detection Using Deep Learning
IRJET- Brain Tumor Detection using Convolutional Neural Network
Overview of convolutional neural networks architectures for brain tumor segm...
Brain Tumor - Final Presentation.pdf
A deep learning approach for brain tumor detection using magnetic resonance ...
IRJET- Brain Tumor Detection and Classification with Feed Forward Back Propag...
IRJET- Image Classification using Deep Learning Neural Networks for Brain...
Hybrid model for detection of brain tumor using convolution neural networks
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
3D Segmentation of Brain Tumor Imaging
Brain tumor classification using artificial neural network on mri images
Brain Tumor Detection From MRI Image Using Deep Learning
Brain Tumor Detection Using Deep Neural Network.pptx
IRJET- A Study on Brain Tumor Detection Algorithms for MRI Images
Ph. D. PPT brain tumour detection using AI.pptx
Ad

More from mounikadopenventio (20)

PDF
substantive social metaphysicssubstantive social metaphysics
PDF
metaphysics in sociologymetaphysics in sociology
PDF
metaphysics in sociologymetaphysics in sociology
PDF
metaphysics in sociologymetaphysics in sociology
PDF
metaphysics in sociologymetaphysics in sociology
PDF
metaphysics in sociologymetaphysics in sociology
PDF
metaphysics in sociologymetaphysics in sociology
PDF
metaphysics in sociologymetaphysics in sociology
PDF
Original+Research_metaphysics in sociologymetaphysics in sociologyADMINISTRAT...
PDF
metaphysics an anthologymetaphysicsmetaphysics an anthology
PDF
Analysis+and+Metaphysics+Vol.+23+No.+02+(2024).. (4).pdf
PDF
metaphysics an anthologymetaphysicsmetaphysics an anthology
PDF
metaphysics an anthologymetaphysicsmetaphysics an anthology
PDF
metaphysics an anthologymetaphysicsmetaphysics an anthology
PDF
metaphysics an anthologymetaphysicsmetaphysics an anthology
PDF
Substance Substance Substance SubstanceSubstance
PDF
RealismRealismRealismvRealismRealismRealism
PDF
RealismRealismvRealismRealismRealismvRealism
PDF
dRealismRealismvRealismRealismRealismvRealism
PDF
RealismRealismvRealismRealismRealismvRealism
substantive social metaphysicssubstantive social metaphysics
metaphysics in sociologymetaphysics in sociology
metaphysics in sociologymetaphysics in sociology
metaphysics in sociologymetaphysics in sociology
metaphysics in sociologymetaphysics in sociology
metaphysics in sociologymetaphysics in sociology
metaphysics in sociologymetaphysics in sociology
metaphysics in sociologymetaphysics in sociology
Original+Research_metaphysics in sociologymetaphysics in sociologyADMINISTRAT...
metaphysics an anthologymetaphysicsmetaphysics an anthology
Analysis+and+Metaphysics+Vol.+23+No.+02+(2024).. (4).pdf
metaphysics an anthologymetaphysicsmetaphysics an anthology
metaphysics an anthologymetaphysicsmetaphysics an anthology
metaphysics an anthologymetaphysicsmetaphysics an anthology
metaphysics an anthologymetaphysicsmetaphysics an anthology
Substance Substance Substance SubstanceSubstance
RealismRealismRealismvRealismRealismRealism
RealismRealismvRealismRealismRealismvRealism
dRealismRealismvRealismRealismRealismvRealism
RealismRealismvRealismRealismRealismvRealism
Ad

Recently uploaded (20)

PDF
How to run a consulting project from scratch
PDF
El futuro en e sector empresarial 2024 e
PDF
Implementing Steam Education: Challenges and Solutions (www.kiu.ac.ug)
PPTX
003 seven PARTS OF SPEECH english subject.pptx
PDF
Shriram Finance, one of India's leading financial services companies, which o...
DOCX
Center Enamel Enabling Precision and Sustainability in the Netherlands' Advan...
PDF
BeMetals_Presentation_September_2025.pdf
PDF
The Influence of Historical Figures on Legal Communication (www.kiu.ac.ug)
PPTX
Warehouse. B pptx
PDF
France's Top 5 Promising EdTech Companies to Watch in 2025.pdf
PPTX
1. Ancient Civilization presentations .pptx
PDF
Не GPT єдиним: можливості AI в бізнес-аналізі | Вебінар з Тетяною Перловською
 
PDF
Chembond Chemicals Limited Presentation 2025
PPTX
Hospitality & tourism management.pptxHospitality & tourism management.pptx
PDF
Nante Industrial Plug Socket Connector Sustainability Insights
PPTX
Capital Investment in IS Infrastracture and Innovation (SDG9)
PDF
The Impact of Policy Changes on Legal Communication Strategies (www.kiu.ac.ug)
PDF
The Dynamic CLOs Shaping the Future of the Legal Industry in 2025.pdf
PDF
El futuro empresarial 2024 una vista gen
PDF
The Role of School Boards in Educational Management (www.kiu.ac.ug)
How to run a consulting project from scratch
El futuro en e sector empresarial 2024 e
Implementing Steam Education: Challenges and Solutions (www.kiu.ac.ug)
003 seven PARTS OF SPEECH english subject.pptx
Shriram Finance, one of India's leading financial services companies, which o...
Center Enamel Enabling Precision and Sustainability in the Netherlands' Advan...
BeMetals_Presentation_September_2025.pdf
The Influence of Historical Figures on Legal Communication (www.kiu.ac.ug)
Warehouse. B pptx
France's Top 5 Promising EdTech Companies to Watch in 2025.pdf
1. Ancient Civilization presentations .pptx
Не GPT єдиним: можливості AI в бізнес-аналізі | Вебінар з Тетяною Перловською
 
Chembond Chemicals Limited Presentation 2025
Hospitality & tourism management.pptxHospitality & tourism management.pptx
Nante Industrial Plug Socket Connector Sustainability Insights
Capital Investment in IS Infrastracture and Innovation (SDG9)
The Impact of Policy Changes on Legal Communication Strategies (www.kiu.ac.ug)
The Dynamic CLOs Shaping the Future of the Legal Industry in 2025.pdf
El futuro empresarial 2024 una vista gen
The Role of School Boards in Educational Management (www.kiu.ac.ug)

ugc carelist journals ugc carelist journals

  • 1. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 24 Published by: Longman Publishers www.jst.org.in BRAIN TUMOR DETECTION USING CONVOLUTIONAL NEURAL NET WORK SWETHA SASTRY, M.SWETHA, P.SRILATHA, K.AMULYA ASSISTANTPROFESSOR1 , UG SCHOLAR 2, 3&4 DEPARTMENT OF CSE, MALLA REDDY ENGINEERING COLLEGE FOR WOMEN,MAISAMMAGUDA, DHULAPALLY KOMPALLY, MEDCHAL RD, M, SECUNDERABAD, TELANGANA 500100 To Cite this Article SWETHA SASTRY, M.SWETHA, P.SRILATHA, K.AMULYA, BRAIN TUMOR DETECTION USING CONVOLUTIONAL NEURAL NET WORK” ”,Journal of Science and Technology, Vol. 07, Issue 09,-November 2022, pp24-31 Article Info Received: 29-09-2022 Revised: 18-09-2022 Accepted: 28-10-2022 Published: 14-11-2022 ABSTRACT—Brain tumor is the main threat among the people. But currently, it become more advanced because of the many Machine Learning techniques. Magnetic Resonance Imaging is the greatest technique among all the image processing techniques which scans the human body and gives a clear resolution of the tumors in an improved quality image. The fundamentals of MRI are to develop images based on magnetic field and radio waves of the anatomy of the body. The major area of segmentation of images is medical image processing. Better results are provided by MRI images than CT scan, Xrays etc. Nowadays the automatic tumor detection in large spatial and structural variability. Recently Convolutional Neural Network plays an important role in medical field and computer vision. One of its application is the identification of brain tumor. Here, the pre-processing technique is used to convert normal images to grayscale values because it contains equal intensity but in MRI, RGB content is included. Then filtering is used to remove the unwanted noises using median and high pass filter for better quality of images. The deeper architecture design in CNN is performed using small kernels. Finally, the effect of using this network for segmentation of tumor from MRI images is evaluated with better results. I. INTRODUCTION Magnetic resonance Imaging (MRI) provides brief information about brain tumor anatomy, cellular structure and vascular supply, making it a vital tool for the effective diagnosis, treatment and monitoring of the disease. Magnetic resonance imaging (MRI) is a non-invasive medical test that helps physicians diagnose and treat medical conditions. MRI
  • 2. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 25 Published by: Longman Publishers www.jst.org.in uses a powerful magnetic field, radio frequency pulses and a computer to produce detailed pictures of organs, soft tissues, bone and virtually all other internal body structures. The images can then be inspected on a computer monitor, transmitted electronically, printed or copied to a CD. MRI does not use ionizing radiation (x-rays). Detailed MRI images allow physicians to figure out various parts of the body and resolve the presence of certain diseases. Automated brain tumor detection from MRI images is one of the most demanding tasks in today’s modern medical imaging research. Automatic detection requires brain image segmentation, which is the process of separating the image into distinct regions, is one of the most vital and demanding aspect of computer aided clinical diagnostic tools. Noises present in the Brain MRI images are multiplicative noises and reductions of these noises are complex task. These makes accurate `segmentation of brain images a challenge. However, accurate segmentation of the MRI images is very vital and crucial for the exact diagnosis by computer aided clinical tools. A large variety of algorithms for segmentation of MRI images had been developed. Surgical planning, post- surgical assessment, abnormality detection, and many other medical applications require medical image segmentation. In spite of wide number of automatic and semi-automatic image segmentation techniques, they fail in most cases largely because of unknown and irregular noise, inhomogeneity, poor contrast. II. LITERATURE SURVEY In the paper of R. B. Dubey, he removed noises from the input of MRI image by using the Gaussian filter. Weierstrass Transform is almost similar to the Gaussian filter, which involves convolving using a Gaussian Function. The purpose of using Gaussian filter is to convert the image as a smooth image. The outlook of the image is similar to view through a translucent screen. Gaussian filter is a type of low pass filter, so by passing the filter in the high frequency regions of an image remove the noises. But it takes more time to complete the process and also more details will not be given. Bahadure et al. proposed SVM and BWT techniques image analysis for MRI-based brain tumor detection and classification. 95% of accuracy is achieved by using this method, using skull stripping which eliminated all nonbrain tissues for the detection purpose. Joseph et al. suggested the K-means clustering algorithm for segmentation of MRI brain images along with morphological filtering for the detection of tumor images. Support Vector Machine for automated brain tumor classification of MRI images was proposed by Alfonse and Salem. The author Sachdeva et al. used an Artificial Neural Net- work
  • 3. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 26 Published by: Longman Publishers www.jst.org.in (ANN) and PCA–ANN for the multiclass brain tumor MRI images classification, segmentation with dataset of 428 MRI images and an accuracy of 75– 90% was achieved. III. CONVOLUTIONAL NEURAL NETWORK A. INTRODUCTION TO CNN: Convolutional Neural Network (CNN) are a biologically- inspired variation of the multilayer perceptron’s (MLPs). In CNN, neurons contribute weights but in MLPs every neuron has a separate weight vector. Applying the weights sharing method, neurons are able to achieve convolutions on the input of the data with the help of convolution filter being composed by the weights. This process is then succeeded by a pooling action which is a form of non-linear down- sampling, which decreases the spatial size of the image which decreases the volume of parameters and computation in the net. Activation function is in between the convolution and pooling layer. The important function is ReLu layer which is a non-saturating activation function is correlated element-wise, i.e., f (x) = max (0, x) thresholding at zero. After by using these layers, the size of the image is decreased and further complex features are obtained. B. LAYERS OF CNN 1. Convolutional layer 2. ReLu layer 3. Pooling layer 4. Fully connected layer C. CONVOLUTIONAL LAYER: In neural networks, the input is in the form of vector, whereas in CNN the input is a multi-channeled image i.e. three channels. In CNN, the input image is convolved with the kernel matrix (dot product operation) or filter and the result will be scalar. The filter is moved along the input image to achieve repeated convolution thus it gives an output matrix termed as feature map
  • 4. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 27 Published by: Longman Publishers www.jst.org.in D. ReLu Layer The simplest non-linearity is achieved by the pursuing a linear filter by a non- linear gating function, related identically to every component (point-wise) of a feature map. This kind of function is termed as Rectified Linear Unit (ReLu layer).Yijk = max {0, Xijk} E. POOLING LAYER: Later the convolution layer, pooling is achieved to decrease the dimensionality. This permit to decrease the number of parameters, which both reduces the combats overfitting and training time.These layers ensample every feature map separately which decreases the width and height whereas the depth is maintained perfect. The dimensional of the pooling layer of an input image is 32x32x10. The result of this pooling layer will be in 16x16x10 feature map. In the output the width and height of the feature map are split into two whereas there is no change in depth because pooling layer functions separately on the depth of the input image.
  • 5. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 28 Published by: Longman Publishers www.jst.org.in F. FULLY CONNECTED LAYER: The Fully Connected layer is a traditional Multi-Layer Perceptron that uses an activation function called SoftMax in the output layer (SVM classifiers can also be used). The term “Fully Connected” signifies that each neuron in the preceding layer is connected to each neuron on the adjacent layer. The high-level feature of the input image is obtained from the output of the convolution and pooling layers. The aim of using the Fully Connected layer is to use these features for segmenting the image into several classes based on the training dataset. The output of the fully connected layer is 1D vector of numbers whereas the output from both convolutional and pooling layers are 3D volumes. IV RESULTS AND DISCUSSION A. BLOCK DIAGRAM EXPLANATION The main theme of the project is to extract the tumor part in the brain image. This can be achieved by using preprocessing, CNN and post- processing. The feature map is obtained by using kernels. And the back-proportion algorithm is used to enhance the characteristics the input image. Here, the feature map helps to reduce over fitting. The detailed description of the process is explained below: B. INPUT IMAGE The main aim of this project is to find the brain tumor part in the brain image. This Process is done by using pre-processing, classification via CNN and post-
  • 6. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 29 Published by: Longman Publishers www.jst.org.in processing. The main aim of this project is to find the brain tumor part in the brain image. This Process is done by using pre-processing, classification via CNN and post-processing. C. PRE-PROCESSING These pre-processing techniques consist of filtering, image detection, and image enhancement mentioned in figure. To enhance and smooth the image while processing the Convolutional neural network preprocessing is used. D. PATCH EXTRACTION Brain image is patched pixel by pixel and to find the brain tumor part in the image. There are basically two types of patch-based image models-descriptive and generative. Descriptive models focus on the extraction of the distinctive features from the given image so that they can facilitate the task of classifying the image into one of several classes. So, we can say that they are suitable for the task of classification and recognition. Generative models preserve the information in an image that is why they are more desirable for the task of compression and restoration. E. PATCH PRE-PROCESSING The ultimate goal of the pre-processing is to develop the data of an image which overcomes the undesired distortions or raise some relevant features of an image for further processing and analysing the task. Repetition in images is done by pre- processing. The brightness value is similar to the neighbouring pixels which is identical to one real object. The distorted pixel in an image can be replaced by average value of neighbouring pixels. F. MEDIAN FILTER To retain the vital image details like edges, removal of noise, median filter has been widely used in image processing. The reason back its comprehensive usage is that it preserves the edges of the image. As the name indicates, in this every entry is replaced with the median of its adjacent entries. Salt and pepper noise and poisson’s noise is removed by this filter. This filter works by moving the whole signal in a pattern. The intensity of the median of the pixels in the pattern becomes the output intensity. The median is calculated by sorting the pixel values into the ascending order and replace the pixel value with the calculated middle pixel value. G. SEGMENTATION The process of segmentation is dividing an image into parts with identical properties such as level, grey, colour, brightness, contrast and texture the role of segmentation is to divide the regions in an image. The aim of segmentation is to extract the
  • 7. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 30 Published by: Longman Publishers www.jst.org.in region of local tumor in the case of medical image segmentation. It is a difficult task because the medical images are complex and hardly have any linear feature. Several researchers have done the segmentation techniques in different ways at present from the medical image segmentation point of view. Here, the segmentation technique is achieved on the basis of grey level using convolutional neural network. CONCLUSION The main theme of this project is to study the automatic brain tumor analysis with high accuracy, performance and low complexity. Fuzzy C Means (FCM) logic is performed by conventional brain tumor based on its segmentation, shape and texture of feature extraction, Support Vector Machines (SVMs) and Deep Neural Network (DNN) based division are carried out. There is low complexity. The time required for computation is high and there will be low accuracy. To avoid the low accuracy and high computation time, the Convolutional Neural Network (CNN) is established in the scheme. The result will be classified as tumor and normal images of brain. CNN comes under the technique of deep learning, which consists of chain feed forward layers. Python language can also used for working. Database based on image net is used for classification. Pre trained models are performed so that the training is executed only for final layer. In CNN, the results are obtained in 3D volume i.e. raw pixel value with depth, width and height. High accuracy is obtained by using Gradient decent based loss function. Here the calculation is obtained by training accuracy, validation accuracy and validation loss. Here, the validation loss is very low whereas the validation accuracy is high. The training accuracy will be 97.5%. REFERENCES 1. P. Rangne, P. Bhombe and P. Welankiwar, "Brain Tumor Extraction from MRI Images Using MATLAB", Volume 5 - 2020, Issue 9 - September, vol. 5, no. 9, pp. 436-439, 2020. Available: 10.38124/ijisrt20sep102. 2. T. Logeswari and M. Karnan, "An Enhanced Implementation of Brain Tumor Detection Using Segmentation Based on Soft Computing", International Journal of Computer Theory and Engineering, pp. 586-590, 2010. Available: 10.7763/ijcte.2010.v2.206.
  • 8. Journal of Science and Technology ISSN: 2456-5660 Volume 7, Issue 09 (November 2022) www.jst.org.in DOI:https://doi.org/10.46243/jst.2022.v7.i09.pp24-31 Page | 31 Published by: Longman Publishers www.jst.org.in 3. E. Hassan and A. Aboshgifa, "Detecting Brain Tumour from Mri Image Using Matlab GUI Programme", International Journal of Computer Science & Engineering Survey, vol. 6, no. 6, pp. 47- 60, 2015. Available: 10.5121/ijcses.2015.6604. 4. M. Khan and M. Syed, "Image Processing Techniques for Automatic Detection of Tumor in Human Brain Using SVM", IJARCCE, vol. 4, no. 4, pp. 541-544, 2015. Available: 10.17148/ijarcce.2015.44125. 5. G. Selim, N. El- Amary and D. Dahab, "Force Signal Tuning for a Surgical Robotic Arm Using PID Controller", International Journal of Computer Theory and Engineering, pp. 148-152, 2012. Available: 10.7763/ijcte.2012.v4.440