Brain Tumor Detection Using MRI Images
Brain Tumor Detection Using MRI Images
Brain Tumor Detection Using MRI Images
Special Issue: International Conference on Advances in Engineering, Science and Technology – 2021
Organized by: Uttaranchal Institute of Technology, Uttaranchal University, Dehradun
Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
1. INTRODUCTION
Because brain tumors are the most common type of cancer Now that we have a scanned image of the brain, we must
in humans, research into them is crucial. precisely identify the tumor, its size, and its position. The
It is the primary cause of the rise in child and adult death rat Neurosurgeon will need all of this information to complete
es. Headaches, nausea, vomiting, personality and behavioral his diagnosis. This is where CIP (Computerized Image
changes, memory loss, sensory disruption, weakness, and Processing) can assist. We can accurately detect the tumor
numbness is among the signs of brain tumors. using various segmentation approaches and feature
extraction methods.
The term "tumor" refers to abnormal tissue growth. Brain
tumors are divided into two categories: benign and Tumors can damage all healthy brain cells directly, and they
malignant tumors. In the case of a brain tumor, MRI imaging can also harm healthy cells indirectly by crowding other
is crucial for analysis, diagnosis, and therapy planning. When sections of the brain. The proposed approaches are applied
compared to other commonly used X-ray scanners, the to an MRI scan of the human brain, which serves as the
images produced by an MRI scan are better at exhibiting system's input images or original images. At the same time
small details and so have a greater diagnostic quality. as histogram equalization methods are being processed, the
RGB input photos will be converted to grayscale in the pre-
In this paper, we will primarily focus on improving existing
processing stage.
image processing algorithms or designing a better strategy
for tumor diagnosis with a reliable graphical user interface.
Benign
Yes Image
Classification Tumor Segmentation
found?
Malignant
No
2.1. Preprocessing:
The pre-processing stage improves an image by removing converting an RGB image to a grayscale image, only 8 bits are
undesired distortions and showing observable areas of the required to save a single pixel of the image. As a result,
image. The input image is converted to grayscale, which storing a grayscale image will take up 33% less memory than
improves image quality. It's a catch-all term for operations storing an RGB image.
on images at the most basic level of abstraction. To increase
Grayscale images are far more convenient to work within a
the detection of the problematic region from an MRI,
variety of situations, like as It is easier to deal with a single-
preprocessing techniques are applied.
layered image (Grayscale image) than a three-layered image
Before we begin processing our image, we must ensure that in many morphological processes and image segmentation
it is free of extraneous data and in the correct format for problems (RGB color image ) because it is easier to detect
processing in order for the results to be accurate. Pre- features in a grayscale image rather than MRI images
processing is the term used to describe this procedure.
2. Anisotropic diffusion
Conversion to grayscale, noise reduction and noise removal, Anisotropic diffusion reduces visual noise without deleting
picture reconstruction, image augmentation, and, in the case substantial portions of the image information, such as edges,
of medical pictures, steps such as skull removal from an MRI lines, or other crucial elements for visual interpretation.
are all examples of pre-processing.
3. Image enhancement
Converting a picture to grayscale is one of the most used pre- Before processing, image enhancement is the process of
processing techniques. A grayscale image is frequently increasing the quality and information content of raw data.
mistaken for a black and white image, but this is not the case. Contrast enhancement, density slicing, spatial filtering, are
Because a black and white image has only two hues, black all common techniques for image enhancement
and white, the intensity can be either 1 or 0. A grayscale
image, on the other hand, is made up of shades of grey with
no apparent color.
This means that without revealing any color, each pixel
indicates the intensity value at that pixel. A grayscale image,
unlike a black and white image, has a variety of colors, with
white being the lightest and black being the deepest. The
intensity values of a pixel in a grayscale image are also not
absolute and can be infractions.
So basically we are dividing preprocessing stage into 3 main 2.2. Feature extraction:
steps: The most important part of image processing is feature
1. Converting MRI images to grayscale image: extraction. It is done for reducing the original dataset by
We are converting MRI images into grayscale for the measuring and extracting certain features. Feature
following reasons - extraction starts from an initial set of data and builds
An RGB color image requires 8*3 = 24 bits to store a single features that are informative and non-redundant.
color pixel (8 bits for each color component); however, when