SlideShare a Scribd company logo
1 of 8
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 367
BRAIN TUMOR DETECTION AND SEGMENTATION USING
WATERSHED SEGMENTATION AND MORPHOLOGICAL
OPERATION
Swe Zin Oo1
, Aung Soe Khaing2
1
Demonstrator, Department of Electronic Engineering, Mandalay Technological University, Myanmar
2
Associate Professor, Department of Electronic Engineering, Mandalay Technological University, Myanmar
Abstract
In the field of medical image processing, detection of brain tumor from magnetic resonance image (MRI) brain scan has become
one of the most active research. Detection of the tumor is the main objective of the system. Detection plays a critical role in
biomedical imaging. In this paper, MRI brain image is used to tumor detection process. This system includes test the brain image
process, image filtering, skull stripping, segmentation, morphological operation, calculation of the tumor area and determination
of the tumor location. In this system, morphological operation of erosion algorithm is applied to detect the tumor. The detailed
procedures are implemented using MATLAB. The proposed method extracts the tumor region accurately from the MRI brain
image. The experimental results indicate that the proposed method efficiently detected the tumor region from the brain image. And
then, the equation of the tumor region in this system is effectively applied in any shape of the tumor region.
Key Words: Magnetic resonance image, skull stripping, segmentation, morphological operation, detection
--------------------------------------------------------------------***----------------------------------------------------------------------
1.INTRODUCTION
In the medical field, magnetic resonance image (MRI) is
widely used in many research [1]. MRI techniques is a
noninvasive method and uses powerful magnet and radio
waves to create the picture of the body. It is suited for
examining soft tissues of the human body such as Ligament
and tendon injury, spinal cord injury and brain tumors, etc.
[2]. The detail information of the human brain can be get
using MRI techniques [1].
Brain, heart and lung etc. are the most important parts of the
human body. And then, all parts of the body are controlled
by the brain cells [3]. Therefore, brain is a vital organ of the
body. Nowadays, brain tumor is a very serious disease
among children and adults. The most deadly and intractable
diseases are brain tumor [4]. Brain tumor’s location and
quickly spreading make a critical problem in treatment of
tumor [5]. Thus, image segmentation and detection are vital
method to solve the medical problem of the various
diseases. Imaging of the brain tumor can be done by
computer tomography (CT) scan, magnetic resonance image
(MRI) scan, Ultrasound, etc. In this research, MRI scan is
used to implement the system [2].
Several works for detection of the brain tumor have been
reported in [1],[5] - [8]. Pratik P et al [1] proposed brain
tumor detection method using connected component
analysis. The method proposed by Manor K Kowari et al [5]
requires to do image cropping so that the exact result of the
tumor region is not obtained. M. Masroor Ahmed et al [6]
proposed the method of the brain tumor detection using
Kmeans Clustering. Nagalkar V J et al [7] proposed brain
tumor detection using soft computing method. This method
can cause false detection in seeing scan. Rajesh C. Patil et al
[8] proposed the method of the brain tumor extraction from
MRI images using MATLAB. Image segmentation can be
done by various techniques: histogram thresholding, region
growing, K-means Clustering and watershed segmentation
[9]. Watershed segmentation is suitable for tumor region
that have higher intensity values [10]. In this paper, marker
controlled watershed segmentation is used to prevent over
segmentation [11]. Preprocessing of the MRI image is the
primary step which removes noise and smooth the image.
To prevent misclassification of brain tissue and non-brain
tissues, skull stripping is done [8]. And, image segmentation
is carried out using marker controlled watershed
segmentation [12]. Then, the tumor region is detected from
the segmented image using morphological operation and
calculated the tumor region [4]. Finally, the location of the
tumor region is determined.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 368
2.MATERIALS AND METHODS
2.1Preprocessing
Preprocessing include the input MRI brain tumor image and
image filtering. In image filtering, several different filters
can be used but the magnetic resonance image (MRI) image
does not contain a lot of noise. So, in this research, average
filter is used to smooth the image. The smoothed image is
used to operate the next step of the system quickly. Average
filter is low pass filter. Average filter is a simple and easy to
implement method of smoothing images. The operation of
average filter is
g (x, y)=1/M (1)
Where, S=neighborhood of pixel (x, y)
M=number of pixels in neighborhood S
2.2 Skull Stripping
Skull stripping is important process in biomedical image
analysis. It is needed to make only in brain image but is not
needed to make in other medical image analysis such as
heart, lung, etc. It must be done before other image
processing step. It is a process of eliminating all non-brain
tissues from brain image. In skull stripping, it is removed
extra cerebral tissues such as skull, fat, skin, etc. Skull
stripping can be done by various methods. They are
automatic skull stripping using image contour, skull
stripping based on region growing and mathematical
morphology, skull stripping based on histogram analysis,
skull stripping based on resonance principle and skull
stripping based on threshold value. Skull stripping based on
threshold value is used to remove the skull tissues in this
paper. In the skull stripping based on threshold value, the
threshold value of the skull tissues and that of normal brain
tissues are manually determined for every image [13].
2.3Watershed Segmentation
Watershed segmentation is a gradient-based segmentation
technique. It considers the gradient map of the image as a
relief map. It segments the image as a dam. The segmented
regions are called catchment basins. Watershed
segmentation solves a variety of image segmentation
problem. It is suitable for the images that have higher
intensity value. Watershed segmentation is caused over
segmentation. To control over segmentation, marker
controlled watershed segmentation is used. Sobel operator is
suitable for edge detection. In marker controlled watershed
segmentation, sobel operator is used to distinct the edge of
the object [10].
The sobel masks in matrix form are as follow:
Mx = , My =
The equation of gradient magnitude used in marker
controlled watershed segmentation is
M= (2)
Angle, ɵ=tan-1
(3)
2.4Morphological Operation
Morphological image processing is a collection of non-
linear operations related to the shape or morphology of
features in an image. A morphological operation on a binary
image creates a new binary image in which the pixel has a
non-zero value. Morphological operations transform the
image. In this paper, erosion is applied to detect the tumor
[6]. The erosion of A by B is given by the expression:
A Ө B = {( i , j) : B( i, j) } (4)
Where, A= the binary image,
B= the structuring element
(i, j)= the center pixel of structuring element
2.5Calculation the tumor region
The area of the tumor region is calculated by the following
equation:
Tumor area=Axtotal number of pixel in the tumor region (5)
A= V x H (6)
Where, A=the area of each pixel
H=horizontal dimension of the image
V=vertical dimension of the image
H=1/horizontal resolution of the image
V=1/vertical resolution of the image
3.IMPLEMENTATION
In this paper, the system is implemented as shown in Fig-1.
In this system, the input MRI brain image is used to
implement the algorithms. MRI image gives the detailed
information of the brain tissues than other scan of the brain.
Firstly, the brain image is checked out as the brain image
with tumor region or the brain image without tumor region.
So, the tumor region is extracted from the brain image and
the number of pixel for the tumor region is calculated. If the
number of pixel for the tumor region is equal to zero, the
system displays the brain image without tumor region.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 369
Otherwise, the system displays the brain image with tumor
region. If the brain image has tumor region, this image is
needed to do the following further steps. In the next step, the
noise from the brain image is removed using filter. Several
filters can be used to remove the noise. But, the MRI image
does not contain a lot of noise. So the average filter is used
to remove the noise from the brain image in this system.
After preprocessing, the smoothed image is obtained and it
is ready to use in the next step. The smoothed image is used
to operate the next step quickly. In brain image, skull
stripping is needed to do for avoiding misclassification.
Skull stripping can be done by various method .In this
paper, skull stripping based on threshold value is used to
extract the skull tissues. In process, the brain tissues are
firstly extracted from the brain image and the holes are filled
the brain image. And then, the skull tissues are extracted
from the filled image and are given the name, the skull
image. The skull image is converted into the binary image.
The binary image and the inverse of the image that extract
brain tissues image are combined to get the skull border.
When the skull border in the brain image is given zero, the
brain image without skull tissues is get. After the brain
image without skull tissues had been obtained, segmentation
process is done. In segmentation step, the brain image
obtained from the skull stripping step is segmented using
marker controlled watershed segmentation. This
segmentation process uses the sobel operator to find the
gradient image. Using the gradient image, the watershed
transform is estimated. Next, the segmented image is
divided into normal brain region and tumor region according
to intensity value of the original image. Therefore, the final
segmentation map is get. Then, the tumor region is detected
from the final segmentation map using morphological
operation. In this process, the image get from the
segmentation step is eroded. And then, the gray matter and
white matter are extracted from the brain image. The region
properties of the image are defined and the values of the
regions are calculated. And the region that has the maximum
intensity value is found out. Finally, the tumor region is
efficiently detected from the brain image. After the tumor
region had been detected from the brain image, the area of
the tumor region is calculated. Firstly, the area of the pixel is
calculated. Then, the total pixel of the tumor region is
calculated. And then, the area of the tumor region is
calculated. Next, the location of the tumor region is
determined. The tumor image obtained from the detection
process is divided into two parts. The right part of the image
is defined as the left hemisphere of the brain and the left part
of the image is the right hemisphere of the brain. Then the
total number of pixel for each part is calculated and
compared them. If the total number of pixel of each part is
equal, the tumor is located in the center of the brain.
Otherwise, the other two conditions are checked out. If the
pixel value of the right part of the image is greater than that
of the left part, the tumor is located in the left hemisphere of
the brain and else the tumor is located in the right
hemisphere of the brain.
Input MRI brain image
Test the brain image
Preprocessing
Skull Stripping
Image segmentation
Tumor detection
Calculation of the tumor area
Determination of the tumor
location
Fig- 1: Implementation procedure
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 370
4. RESULTS
When the input image is loaded into the test image process,
the process classifies as the image into two types: the brain
image with tumor and the brain image without tumor. Fig- 2
describes the input brain images and their results.
(a) Input brain image with tumor region
(b)The result of the input brain image with tumor region
(c) The input brain image without tumor region
(d)The result of the input brain image without tumor region
Fig- 2: The input brain images and their results
If the brain image has the tumor region, this image is needed
to do preprocessing. The average filter is applied the input
brain image. The size of the filter is 5 x 5 in this research.
The noise is removed to get the smoothed image. The
resulted image of the preprocessing step is shown in Fig-3.
Fig- 3: The smoothed image using average filter
After preprocessing, the resulted image is loaded into skull
stripping process. Skull stripping based on threshold value
can give the suitable result. Fig- 4 describes the result of the
skull stripping process.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 371
Fig-4: The output image without skull tissues for skull
stripping step
In the marker controlled watershed segmentation, the brain
image without skull tissues is used to implement the step.
Sobel operator is applied on the brain image without skull
tissues and the gradient magnitude is calculated. Using the
gradient magnitude, the gradient image is found out. After
that, the watershed segmentation is estimated using gradient
image. And then, the normal brain region and the tumor
region are marked to get the final segmentation map. The
segmented image obtained using marker controlled
watershed segmentation is shown in Fig- 5. The image for
the final segmentation map is described in Fig.-6.
Fig- 5: The segmented image
Fig-6: The final segmentation map
After segmentation, the tumor region is detected from the
segmented image. In this process, morphological operation
is used to detect the tumor region. Morphological operation
can efficiently detect the tumor region from the brain image.
The output image for the detection process is shown in Fig-
7.
Fig.-7: The image of the tumor region for the detection
process
After the tumor region had been obtained, the area of the
tumor region is calculated using equation (5). The area of
the tumor is get 0.3191 in2
. And then, the tumor location is
determined using the output image obtained from the
detection process. The result of the determination of the
tumor location is described in Fig.-8.
Fig- 8: The value of the tumor area and the location of the
tumor
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 372
Another input brain image is shown in Fig.-9 and the result
image of the tumor region is illustrated in Fig-10. The area
of the tumor region is 0.44301 in2
. Then, the location of the
tumor region is shown in Fig.-11.
Fig.-9: The input brain tumor image
Fig.-10: The image of the tumor region
Fig-11: The value of the tumor area and the location of the
tumor
5. DISCUSSIONS
In this paper, the brain image has been classified into normal
brain image and abnormal brain image. This process can
correctly classify the brain image in less execution time.
And the average filter provides the suitable smoothed image
for skull stripping step. Skull stripping is needed to do only
in brain image. It is not needed to do other medical image
processing such as heart, lung, etc. Skull stripping based on
threshold value gives the reliable result for the next
processing step such as segmentation, detection, and so on.
But, this skull stripping method has a drawback. When the
threshold value of non-brain tissues are equal to that of the
brain tissues, this skull stripping method cannot efficiently
remove the skull from the brain image. Therefore the skull
tissues can leave in the brain image because of this
drawback. But, this drawback can be overcome using
morphological operation. Then, marker controlled watershed
segmentation method can efficiently segment the MRI brain
tumor image. This segmentation method can reduce the
problem of over segmentation and gives the suitable
segmentation map for detection of the tumor. Tumor
detection using morphological operation can give the exact
result of the tumor region. The equation of the tumor area in
this research is suitable for any shape of the tumor region. It
can give the exact value of the rumor region. In this system,
the location of the tumor has been determined. This method
can efficiently display the location of the tumor at left
hemisphere or right hemisphere.
6. CONCLUSIONS
In medical decision, the use of computer science plays an
important role for analyzing various diseases. Magnetic
resonance image (MRI) is a critical part in many researches.
So the MRI brain image is used to implement the system.
And morphological operation is used to detect the tumor
region. It is easy to implement and reasonably fast. In this
work, the brain image testing process has been done. This
method is given the reliable result for the brain image. If the
brain image has the tumor region, the further processing
steps are needed to be done. The preprocessing step is
important to segment the brain image. After the
preprocessing, the brain image is free from noise and this
smoothed image is ready to be used in further processing. In
this system, a skull stripping based on threshold value has
been done. This method is able to remove the skull tissues
from the brain image and give the suitable result. And then,
marker controlled watershed segmentation has been done.
Therefore, the intensity of normal brain tissues and that of
tumor region is split up into groups. After segmentation, this
resulted image is divided into the normal brain region and
the tumor region to get the final segmentation map. After
that, the tumor region is detected from the final
segmentation map using morphological operation. And the
tumor region is calculated according to the equation (5).
Finally, the location of the tumor region has been
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 373
determined based on the pixel value of the tumor region.
The right part of the image and the left part of the image are
defined by manually in this process. Therefore, the location
of the tumor is needed to define automatically. In this paper,
the tumor region is extracted from the single MRI brain
slice. Really, MRI scan take the picture of the brain in many
slices. And the tumor region is not located in the single
slice. Above the reason, the tumor volume is needed to
calculate. The volume of the tumor is calculated to get the
exact result of the tumor region. Therefore, the tumor
volume is needed to calculate. The tumor volume can be
calculated using Frustum model.
ACKNOWLEDGMENT
The author would like to acknowledge the head of
Department of Electronic Engineering, Mandalay
Technological University. The author is highly grateful to
all the teachers, Department of Electronic Engineering,
Mandalay Technological University. The author specially
wants to thank her supervisor Dr. Aung Soe Khaing,
Department of Electronic Engineering, Mandalay
Technological University for his guidance and constant
encouragement throughout the work.
REFERENCES
[1]. Skull Stripping of MRI Head Scans based on Chan-
Vese Active Contour Model, [Online Available],
www.med.harvad.edu/AANLIB/home.html, accessed
on 8 August 2013.
[2]. Magnetic Resonance Image, [Online Available],
www.CEwebsource.com, accessed on 18 June 2013.
[3]. Pratik P. Singhai, Siddharth A. Ladhake, “Brain Tumor
Detection using Marker Based Watershed
Segmentation from Digital MR images”, International
Journal of Innovative Technology and Exploring
Engineering (IJITEE) ISSN: 2278-3075, Volume-2,
Issue-5, April 2013.
[4]. A.Jeeviitha, P. Narendran, “BTS (Brain Tumor
Segmentation) Based on Otus Thresholding,” Indian
Journal of Research, Volume:2, Issue:2, ISSN- 2250-
1991, February 2013.
[5]. Manor K Kowari and Sourabh Yadav, “Brain Tumor
Detection and Segmentation using Histogram
Thresholding”, International Journal of Engineering
and Advanced Technology (IJEAT) ISSN: 2249-898,
Volume-1, Issue-4, Journal, India, April 2012.
[6]. M. Masroor Ahmed, Dzulkifli Bin Mohamad,
“Segmentation of Brain MR Images for Tumor
Extraction by Combining Kmeans Clustering and
Perona-Malik Anisotropic Diffusion model.
[7]. Nagalkaar. V.J and Asole S.S, “Brain Tumor
Detection using Digital Image Processing based on
Soft Computing,” Journal of Signal and Image
Processing, Volume 3, Issue 3, Issn: 0976-8882, 2012.
[8]. Rajesh C.Patil, Dr. A. S.Bhalchandra, “Brain Tumor
Extraction from MRI Images using MATLAB,”
International Journal of Electronics, Communication &
Soft Computing Science and Engineering, Volume 2,
Issue 1, ISSN: 2277-9477.
[9]. S Jayaraman, S Esakkirajan and TVeerakumar, Digital
Image Processing, 3rd
Edition, Tata McGraw Hill,
2010, ISBN (13): 978-0-07-014479-8, ISBN (10): 0-
070114479-6.
[10]. M. C Jobin Christ, R.M.S. Paravathi, “Segmentation of
Medical Image using Clustering and Watershed
Algorithms”, American Journal of Applied Sciences
8(2): 1349-152, 2011 ISSN 1546-9239© 2011 Science
Publication.
[11]. Dibyendu Goshal, Pinaki Pratim Acharjya, “MRI
Image Segmentation using Watershed Transform”,
International Journal of Emerging Technology and
Advanced Engineering, ISSN 2250-2459, Volume 2,
Issue 4, April 2012.
[12]. “Biosignal and Biomedical Image Processing”,
[Online Available], www.dekker.com, accessed on 11
October 2013.
[13]. Rosniza Roslan, Nursuriati Jamil and Rozi Mahmud,
“Skull Stripping Magnetic Resonance Images Brain
Images: region Growing versus Mathematical
Morphology”, International Journal of Computer
Information Systems and Industrial Management
applications, ISSN 2150-7988, Volume (2011).
BIOGRAPHIES
Swe Zin Oo received her
bachelor of engineering in
Electronics from Mandalay
Technological University,
Myanmar in 2007. She is
presently a master student at the
Mandalay Technological
University, Myanmar. Her
research interests include skull
stripping, image segmentation
and tumor detection.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 374
Aung Soe Khaing received his
PhD in electronic engineering
from Mandalay Technological
University, Myanmar, in 2011.
He was doing research on Spatial
Frequency Analysis of the
Human Brain at the Institute of
Biomedical Engineering and
Informatics, Technical University
Ilmenau, Germany. He is now
Associate Professor at
Department of Electronic
Engineering, Mandalay
Technological University,
Myanmar. His research interests
include computer based
Electrocardiogram (ECG)
system, biomedical signal and
image processing,
biointrumentation and
telemedicine.

More Related Content

What's hot

Comparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operatorsComparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operatorseSAT Journals
 
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...IAEME Publication
 
Brain tumor detection using convolutional neural network
Brain tumor detection using convolutional neural network Brain tumor detection using convolutional neural network
Brain tumor detection using convolutional neural network MD Abdullah Al Nasim
 
Brain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingBrain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingIRJET Journal
 
Application of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detectionApplication of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detectionMyat Myint Zu Thin
 
Brain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI ImagesBrain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI ImagesIJRAT
 
Techniques of Brain Cancer Detection from MRI using Machine Learning
Techniques of Brain Cancer Detection from MRI using Machine LearningTechniques of Brain Cancer Detection from MRI using Machine Learning
Techniques of Brain Cancer Detection from MRI using Machine LearningIRJET Journal
 
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSINGBRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSINGDharshika Shreeganesh
 
Neural Network Based Brain Tumor Detection using MR Images
Neural Network Based Brain Tumor Detection using MR ImagesNeural Network Based Brain Tumor Detection using MR Images
Neural Network Based Brain Tumor Detection using MR ImagesAisha Kalsoom
 
Clustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clusteringClustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clusteringeSAT Journals
 
Literature Survey on Detection of Brain Tumor from MRI Images
Literature Survey on Detection of Brain Tumor from MRI Images Literature Survey on Detection of Brain Tumor from MRI Images
Literature Survey on Detection of Brain Tumor from MRI Images IOSR Journals
 
Brain Tumor Detection using CNN
Brain Tumor Detection using CNNBrain Tumor Detection using CNN
Brain Tumor Detection using CNNMohammadRakib8
 
IRJET- Brain Tumor Detection using Image Processing and MATLAB Application
IRJET-  	  Brain Tumor Detection using Image Processing and MATLAB ApplicationIRJET-  	  Brain Tumor Detection using Image Processing and MATLAB Application
IRJET- Brain Tumor Detection using Image Processing and MATLAB ApplicationIRJET Journal
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...eSAT Journals
 
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Editor IJCATR
 

What's hot (20)

Comparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operatorsComparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operators
 
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
 
Brain tumor detection using convolutional neural network
Brain tumor detection using convolutional neural network Brain tumor detection using convolutional neural network
Brain tumor detection using convolutional neural network
 
Brain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingBrain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive Boosting
 
Application of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detectionApplication of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detection
 
An Image Segmentation and Classification for Brain Tumor Detection using Pill...
An Image Segmentation and Classification for Brain Tumor Detection using Pill...An Image Segmentation and Classification for Brain Tumor Detection using Pill...
An Image Segmentation and Classification for Brain Tumor Detection using Pill...
 
Report (1)
Report (1)Report (1)
Report (1)
 
Brain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI ImagesBrain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI Images
 
Techniques of Brain Cancer Detection from MRI using Machine Learning
Techniques of Brain Cancer Detection from MRI using Machine LearningTechniques of Brain Cancer Detection from MRI using Machine Learning
Techniques of Brain Cancer Detection from MRI using Machine Learning
 
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSINGBRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
 
Neural Network Based Brain Tumor Detection using MR Images
Neural Network Based Brain Tumor Detection using MR ImagesNeural Network Based Brain Tumor Detection using MR Images
Neural Network Based Brain Tumor Detection using MR Images
 
Clustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clusteringClustering of medline documents using semi supervised spectral clustering
Clustering of medline documents using semi supervised spectral clustering
 
Literature Survey on Detection of Brain Tumor from MRI Images
Literature Survey on Detection of Brain Tumor from MRI Images Literature Survey on Detection of Brain Tumor from MRI Images
Literature Survey on Detection of Brain Tumor from MRI Images
 
Brain Tumor Detection using CNN
Brain Tumor Detection using CNNBrain Tumor Detection using CNN
Brain Tumor Detection using CNN
 
B04530612
B04530612B04530612
B04530612
 
IRJET- Brain Tumor Detection using Image Processing and MATLAB Application
IRJET-  	  Brain Tumor Detection using Image Processing and MATLAB ApplicationIRJET-  	  Brain Tumor Detection using Image Processing and MATLAB Application
IRJET- Brain Tumor Detection using Image Processing and MATLAB Application
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...
 
Tumour detection
Tumour detectionTumour detection
Tumour detection
 
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
 
Ieee brain tumor
Ieee brain tumorIeee brain tumor
Ieee brain tumor
 

Viewers also liked

Image processing
Image processingImage processing
Image processingPooja G N
 
A version of watershed algorithm for color image segmentation
A version of watershed algorithm for color image segmentationA version of watershed algorithm for color image segmentation
A version of watershed algorithm for color image segmentationHabibur Rahman
 
Image segmentation
Image segmentationImage segmentation
Image segmentationMukul Jindal
 
A novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attacksA novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attackseSAT Publishing House
 
Cloud storage limit monitoring measures
Cloud storage limit monitoring measuresCloud storage limit monitoring measures
Cloud storage limit monitoring measureseSAT Publishing House
 
Lab view study of electrical power distribution system
Lab view study of electrical power distribution systemLab view study of electrical power distribution system
Lab view study of electrical power distribution systemeSAT Publishing House
 
Behaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glassBehaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glasseSAT Publishing House
 
Stress analysis of stick reinforced granite periwinkle concrete slab under un...
Stress analysis of stick reinforced granite periwinkle concrete slab under un...Stress analysis of stick reinforced granite periwinkle concrete slab under un...
Stress analysis of stick reinforced granite periwinkle concrete slab under un...eSAT Publishing House
 
Maintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industryMaintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industryeSAT Publishing House
 
Defense mechanism for d do s attack through machine learning
Defense mechanism for d do s attack through machine learningDefense mechanism for d do s attack through machine learning
Defense mechanism for d do s attack through machine learningeSAT Publishing House
 
A novel approach on a robot for the blind people which can trained and operat...
A novel approach on a robot for the blind people which can trained and operat...A novel approach on a robot for the blind people which can trained and operat...
A novel approach on a robot for the blind people which can trained and operat...eSAT Publishing House
 
A comparative flow analysis of naca 6409 and naca 4412 aerofoil
A comparative flow analysis of naca 6409 and naca 4412 aerofoilA comparative flow analysis of naca 6409 and naca 4412 aerofoil
A comparative flow analysis of naca 6409 and naca 4412 aerofoileSAT Publishing House
 
Vehicle anti theft system based on an embedded
Vehicle anti theft system based on an embeddedVehicle anti theft system based on an embedded
Vehicle anti theft system based on an embeddedeSAT Publishing House
 
Background differencing algorithm for moving object detection using system ge...
Background differencing algorithm for moving object detection using system ge...Background differencing algorithm for moving object detection using system ge...
Background differencing algorithm for moving object detection using system ge...eSAT Publishing House
 
Green cast demonstration of innovative lightweight construction components ma...
Green cast demonstration of innovative lightweight construction components ma...Green cast demonstration of innovative lightweight construction components ma...
Green cast demonstration of innovative lightweight construction components ma...eSAT Publishing House
 
Study of shape of intermediate sill on the design of stilling basin model
Study of shape of intermediate sill on the design of stilling basin modelStudy of shape of intermediate sill on the design of stilling basin model
Study of shape of intermediate sill on the design of stilling basin modeleSAT Publishing House
 
Optimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithmOptimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithmeSAT Publishing House
 
Experimental study on performance of diesel engine
Experimental study on performance of diesel engineExperimental study on performance of diesel engine
Experimental study on performance of diesel engineeSAT Publishing House
 

Viewers also liked (20)

Image processing
Image processingImage processing
Image processing
 
Segmentation Techniques -II
Segmentation Techniques -IISegmentation Techniques -II
Segmentation Techniques -II
 
A version of watershed algorithm for color image segmentation
A version of watershed algorithm for color image segmentationA version of watershed algorithm for color image segmentation
A version of watershed algorithm for color image segmentation
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
A novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attacksA novel rrw framework to resist accidental attacks
A novel rrw framework to resist accidental attacks
 
Cloud storage limit monitoring measures
Cloud storage limit monitoring measuresCloud storage limit monitoring measures
Cloud storage limit monitoring measures
 
Composites from natural fibres
Composites from natural fibresComposites from natural fibres
Composites from natural fibres
 
Lab view study of electrical power distribution system
Lab view study of electrical power distribution systemLab view study of electrical power distribution system
Lab view study of electrical power distribution system
 
Behaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glassBehaviour of concrete beams reinforced with glass
Behaviour of concrete beams reinforced with glass
 
Stress analysis of stick reinforced granite periwinkle concrete slab under un...
Stress analysis of stick reinforced granite periwinkle concrete slab under un...Stress analysis of stick reinforced granite periwinkle concrete slab under un...
Stress analysis of stick reinforced granite periwinkle concrete slab under un...
 
Maintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industryMaintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industry
 
Defense mechanism for d do s attack through machine learning
Defense mechanism for d do s attack through machine learningDefense mechanism for d do s attack through machine learning
Defense mechanism for d do s attack through machine learning
 
A novel approach on a robot for the blind people which can trained and operat...
A novel approach on a robot for the blind people which can trained and operat...A novel approach on a robot for the blind people which can trained and operat...
A novel approach on a robot for the blind people which can trained and operat...
 
A comparative flow analysis of naca 6409 and naca 4412 aerofoil
A comparative flow analysis of naca 6409 and naca 4412 aerofoilA comparative flow analysis of naca 6409 and naca 4412 aerofoil
A comparative flow analysis of naca 6409 and naca 4412 aerofoil
 
Vehicle anti theft system based on an embedded
Vehicle anti theft system based on an embeddedVehicle anti theft system based on an embedded
Vehicle anti theft system based on an embedded
 
Background differencing algorithm for moving object detection using system ge...
Background differencing algorithm for moving object detection using system ge...Background differencing algorithm for moving object detection using system ge...
Background differencing algorithm for moving object detection using system ge...
 
Green cast demonstration of innovative lightweight construction components ma...
Green cast demonstration of innovative lightweight construction components ma...Green cast demonstration of innovative lightweight construction components ma...
Green cast demonstration of innovative lightweight construction components ma...
 
Study of shape of intermediate sill on the design of stilling basin model
Study of shape of intermediate sill on the design of stilling basin modelStudy of shape of intermediate sill on the design of stilling basin model
Study of shape of intermediate sill on the design of stilling basin model
 
Optimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithmOptimized sensor nodes by fault node recovery algorithm
Optimized sensor nodes by fault node recovery algorithm
 
Experimental study on performance of diesel engine
Experimental study on performance of diesel engineExperimental study on performance of diesel engine
Experimental study on performance of diesel engine
 

Similar to Brain tumor detection and segmentation using watershed segmentation and morphological operation

Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2IAEME Publication
 
Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2iaemedu
 
Mri brain tumour detection by histogram and segmentation
Mri brain tumour detection by histogram and segmentationMri brain tumour detection by histogram and segmentation
Mri brain tumour detection by histogram and segmentationiaemedu
 
IRJET - Machine Learning Applications on Cancer Prognosis and Prediction
IRJET - Machine Learning Applications on Cancer Prognosis and PredictionIRJET - Machine Learning Applications on Cancer Prognosis and Prediction
IRJET - Machine Learning Applications on Cancer Prognosis and PredictionIRJET Journal
 
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...IRJET Journal
 
IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...
IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...
IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...IRJET Journal
 
An evaluation of automated tumor detection techniques of brain magnetic reson...
An evaluation of automated tumor detection techniques of brain magnetic reson...An evaluation of automated tumor detection techniques of brain magnetic reson...
An evaluation of automated tumor detection techniques of brain magnetic reson...Salam Shah
 
IRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLPIRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLPIRJET Journal
 
IRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLPIRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLPIRJET Journal
 
Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...Tamilarasan N
 
IRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR Images
IRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR ImagesIRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR Images
IRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR ImagesIRJET Journal
 
A Review Paper On Brain Tumor Segmentation And Detection
A Review Paper On Brain Tumor Segmentation And DetectionA Review Paper On Brain Tumor Segmentation And Detection
A Review Paper On Brain Tumor Segmentation And DetectionScott Faria
 
A Review on Brain Disorder Segmentation in MR Images
A Review on Brain Disorder Segmentation in MR ImagesA Review on Brain Disorder Segmentation in MR Images
A Review on Brain Disorder Segmentation in MR ImagesIJMER
 
Brain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIs
Brain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIsBrain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIs
Brain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIsCSCJournals
 
Efficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet TransformEfficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet TransformIJERA Editor
 
BRAIN TUMOR DETECTION USING CNN & ML TECHNIQUES
BRAIN TUMOR DETECTION USING CNN & ML TECHNIQUESBRAIN TUMOR DETECTION USING CNN & ML TECHNIQUES
BRAIN TUMOR DETECTION USING CNN & ML TECHNIQUESIRJET Journal
 
Paper id 25201482
Paper id 25201482Paper id 25201482
Paper id 25201482IJRAT
 

Similar to Brain tumor detection and segmentation using watershed segmentation and morphological operation (20)

Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2
 
Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2Mri brain tumour detection by histogram and segmentation by modified gvf model 2
Mri brain tumour detection by histogram and segmentation by modified gvf model 2
 
Mri brain tumour detection by histogram and segmentation
Mri brain tumour detection by histogram and segmentationMri brain tumour detection by histogram and segmentation
Mri brain tumour detection by histogram and segmentation
 
M1803047782
M1803047782M1803047782
M1803047782
 
IRJET - Machine Learning Applications on Cancer Prognosis and Prediction
IRJET - Machine Learning Applications on Cancer Prognosis and PredictionIRJET - Machine Learning Applications on Cancer Prognosis and Prediction
IRJET - Machine Learning Applications on Cancer Prognosis and Prediction
 
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
 
IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...
IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...
IRJET- Analysis of Brain Tumor Classification by using Multiple Clustering Al...
 
An evaluation of automated tumor detection techniques of brain magnetic reson...
An evaluation of automated tumor detection techniques of brain magnetic reson...An evaluation of automated tumor detection techniques of brain magnetic reson...
An evaluation of automated tumor detection techniques of brain magnetic reson...
 
IRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLPIRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLP
 
IRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLPIRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLP
 
Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...Automated brain tumor detection and segmentation from mri images using adapti...
Automated brain tumor detection and segmentation from mri images using adapti...
 
IRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR Images
IRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR ImagesIRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR Images
IRJET- Automatic Brain Tumor Tissue Detection in T-1 Weighted MR Images
 
Bt36430432
Bt36430432Bt36430432
Bt36430432
 
A Review Paper On Brain Tumor Segmentation And Detection
A Review Paper On Brain Tumor Segmentation And DetectionA Review Paper On Brain Tumor Segmentation And Detection
A Review Paper On Brain Tumor Segmentation And Detection
 
A Review on Brain Disorder Segmentation in MR Images
A Review on Brain Disorder Segmentation in MR ImagesA Review on Brain Disorder Segmentation in MR Images
A Review on Brain Disorder Segmentation in MR Images
 
Brain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIs
Brain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIsBrain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIs
Brain Tumor Segmentation and Volume Estimation from T1-Contrasted and T2 MRIs
 
49 299-305
49 299-30549 299-305
49 299-305
 
Efficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet TransformEfficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet Transform
 
BRAIN TUMOR DETECTION USING CNN & ML TECHNIQUES
BRAIN TUMOR DETECTION USING CNN & ML TECHNIQUESBRAIN TUMOR DETECTION USING CNN & ML TECHNIQUES
BRAIN TUMOR DETECTION USING CNN & ML TECHNIQUES
 
Paper id 25201482
Paper id 25201482Paper id 25201482
Paper id 25201482
 

More from eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

More from eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Recently uploaded

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...Call girls in Ahmedabad High profile
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...ranjana rawat
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 

Recently uploaded (20)

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 

Brain tumor detection and segmentation using watershed segmentation and morphological operation

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 367 BRAIN TUMOR DETECTION AND SEGMENTATION USING WATERSHED SEGMENTATION AND MORPHOLOGICAL OPERATION Swe Zin Oo1 , Aung Soe Khaing2 1 Demonstrator, Department of Electronic Engineering, Mandalay Technological University, Myanmar 2 Associate Professor, Department of Electronic Engineering, Mandalay Technological University, Myanmar Abstract In the field of medical image processing, detection of brain tumor from magnetic resonance image (MRI) brain scan has become one of the most active research. Detection of the tumor is the main objective of the system. Detection plays a critical role in biomedical imaging. In this paper, MRI brain image is used to tumor detection process. This system includes test the brain image process, image filtering, skull stripping, segmentation, morphological operation, calculation of the tumor area and determination of the tumor location. In this system, morphological operation of erosion algorithm is applied to detect the tumor. The detailed procedures are implemented using MATLAB. The proposed method extracts the tumor region accurately from the MRI brain image. The experimental results indicate that the proposed method efficiently detected the tumor region from the brain image. And then, the equation of the tumor region in this system is effectively applied in any shape of the tumor region. Key Words: Magnetic resonance image, skull stripping, segmentation, morphological operation, detection --------------------------------------------------------------------***---------------------------------------------------------------------- 1.INTRODUCTION In the medical field, magnetic resonance image (MRI) is widely used in many research [1]. MRI techniques is a noninvasive method and uses powerful magnet and radio waves to create the picture of the body. It is suited for examining soft tissues of the human body such as Ligament and tendon injury, spinal cord injury and brain tumors, etc. [2]. The detail information of the human brain can be get using MRI techniques [1]. Brain, heart and lung etc. are the most important parts of the human body. And then, all parts of the body are controlled by the brain cells [3]. Therefore, brain is a vital organ of the body. Nowadays, brain tumor is a very serious disease among children and adults. The most deadly and intractable diseases are brain tumor [4]. Brain tumor’s location and quickly spreading make a critical problem in treatment of tumor [5]. Thus, image segmentation and detection are vital method to solve the medical problem of the various diseases. Imaging of the brain tumor can be done by computer tomography (CT) scan, magnetic resonance image (MRI) scan, Ultrasound, etc. In this research, MRI scan is used to implement the system [2]. Several works for detection of the brain tumor have been reported in [1],[5] - [8]. Pratik P et al [1] proposed brain tumor detection method using connected component analysis. The method proposed by Manor K Kowari et al [5] requires to do image cropping so that the exact result of the tumor region is not obtained. M. Masroor Ahmed et al [6] proposed the method of the brain tumor detection using Kmeans Clustering. Nagalkar V J et al [7] proposed brain tumor detection using soft computing method. This method can cause false detection in seeing scan. Rajesh C. Patil et al [8] proposed the method of the brain tumor extraction from MRI images using MATLAB. Image segmentation can be done by various techniques: histogram thresholding, region growing, K-means Clustering and watershed segmentation [9]. Watershed segmentation is suitable for tumor region that have higher intensity values [10]. In this paper, marker controlled watershed segmentation is used to prevent over segmentation [11]. Preprocessing of the MRI image is the primary step which removes noise and smooth the image. To prevent misclassification of brain tissue and non-brain tissues, skull stripping is done [8]. And, image segmentation is carried out using marker controlled watershed segmentation [12]. Then, the tumor region is detected from the segmented image using morphological operation and calculated the tumor region [4]. Finally, the location of the tumor region is determined.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 368 2.MATERIALS AND METHODS 2.1Preprocessing Preprocessing include the input MRI brain tumor image and image filtering. In image filtering, several different filters can be used but the magnetic resonance image (MRI) image does not contain a lot of noise. So, in this research, average filter is used to smooth the image. The smoothed image is used to operate the next step of the system quickly. Average filter is low pass filter. Average filter is a simple and easy to implement method of smoothing images. The operation of average filter is g (x, y)=1/M (1) Where, S=neighborhood of pixel (x, y) M=number of pixels in neighborhood S 2.2 Skull Stripping Skull stripping is important process in biomedical image analysis. It is needed to make only in brain image but is not needed to make in other medical image analysis such as heart, lung, etc. It must be done before other image processing step. It is a process of eliminating all non-brain tissues from brain image. In skull stripping, it is removed extra cerebral tissues such as skull, fat, skin, etc. Skull stripping can be done by various methods. They are automatic skull stripping using image contour, skull stripping based on region growing and mathematical morphology, skull stripping based on histogram analysis, skull stripping based on resonance principle and skull stripping based on threshold value. Skull stripping based on threshold value is used to remove the skull tissues in this paper. In the skull stripping based on threshold value, the threshold value of the skull tissues and that of normal brain tissues are manually determined for every image [13]. 2.3Watershed Segmentation Watershed segmentation is a gradient-based segmentation technique. It considers the gradient map of the image as a relief map. It segments the image as a dam. The segmented regions are called catchment basins. Watershed segmentation solves a variety of image segmentation problem. It is suitable for the images that have higher intensity value. Watershed segmentation is caused over segmentation. To control over segmentation, marker controlled watershed segmentation is used. Sobel operator is suitable for edge detection. In marker controlled watershed segmentation, sobel operator is used to distinct the edge of the object [10]. The sobel masks in matrix form are as follow: Mx = , My = The equation of gradient magnitude used in marker controlled watershed segmentation is M= (2) Angle, ɵ=tan-1 (3) 2.4Morphological Operation Morphological image processing is a collection of non- linear operations related to the shape or morphology of features in an image. A morphological operation on a binary image creates a new binary image in which the pixel has a non-zero value. Morphological operations transform the image. In this paper, erosion is applied to detect the tumor [6]. The erosion of A by B is given by the expression: A Ө B = {( i , j) : B( i, j) } (4) Where, A= the binary image, B= the structuring element (i, j)= the center pixel of structuring element 2.5Calculation the tumor region The area of the tumor region is calculated by the following equation: Tumor area=Axtotal number of pixel in the tumor region (5) A= V x H (6) Where, A=the area of each pixel H=horizontal dimension of the image V=vertical dimension of the image H=1/horizontal resolution of the image V=1/vertical resolution of the image 3.IMPLEMENTATION In this paper, the system is implemented as shown in Fig-1. In this system, the input MRI brain image is used to implement the algorithms. MRI image gives the detailed information of the brain tissues than other scan of the brain. Firstly, the brain image is checked out as the brain image with tumor region or the brain image without tumor region. So, the tumor region is extracted from the brain image and the number of pixel for the tumor region is calculated. If the number of pixel for the tumor region is equal to zero, the system displays the brain image without tumor region.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 369 Otherwise, the system displays the brain image with tumor region. If the brain image has tumor region, this image is needed to do the following further steps. In the next step, the noise from the brain image is removed using filter. Several filters can be used to remove the noise. But, the MRI image does not contain a lot of noise. So the average filter is used to remove the noise from the brain image in this system. After preprocessing, the smoothed image is obtained and it is ready to use in the next step. The smoothed image is used to operate the next step quickly. In brain image, skull stripping is needed to do for avoiding misclassification. Skull stripping can be done by various method .In this paper, skull stripping based on threshold value is used to extract the skull tissues. In process, the brain tissues are firstly extracted from the brain image and the holes are filled the brain image. And then, the skull tissues are extracted from the filled image and are given the name, the skull image. The skull image is converted into the binary image. The binary image and the inverse of the image that extract brain tissues image are combined to get the skull border. When the skull border in the brain image is given zero, the brain image without skull tissues is get. After the brain image without skull tissues had been obtained, segmentation process is done. In segmentation step, the brain image obtained from the skull stripping step is segmented using marker controlled watershed segmentation. This segmentation process uses the sobel operator to find the gradient image. Using the gradient image, the watershed transform is estimated. Next, the segmented image is divided into normal brain region and tumor region according to intensity value of the original image. Therefore, the final segmentation map is get. Then, the tumor region is detected from the final segmentation map using morphological operation. In this process, the image get from the segmentation step is eroded. And then, the gray matter and white matter are extracted from the brain image. The region properties of the image are defined and the values of the regions are calculated. And the region that has the maximum intensity value is found out. Finally, the tumor region is efficiently detected from the brain image. After the tumor region had been detected from the brain image, the area of the tumor region is calculated. Firstly, the area of the pixel is calculated. Then, the total pixel of the tumor region is calculated. And then, the area of the tumor region is calculated. Next, the location of the tumor region is determined. The tumor image obtained from the detection process is divided into two parts. The right part of the image is defined as the left hemisphere of the brain and the left part of the image is the right hemisphere of the brain. Then the total number of pixel for each part is calculated and compared them. If the total number of pixel of each part is equal, the tumor is located in the center of the brain. Otherwise, the other two conditions are checked out. If the pixel value of the right part of the image is greater than that of the left part, the tumor is located in the left hemisphere of the brain and else the tumor is located in the right hemisphere of the brain. Input MRI brain image Test the brain image Preprocessing Skull Stripping Image segmentation Tumor detection Calculation of the tumor area Determination of the tumor location Fig- 1: Implementation procedure
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 370 4. RESULTS When the input image is loaded into the test image process, the process classifies as the image into two types: the brain image with tumor and the brain image without tumor. Fig- 2 describes the input brain images and their results. (a) Input brain image with tumor region (b)The result of the input brain image with tumor region (c) The input brain image without tumor region (d)The result of the input brain image without tumor region Fig- 2: The input brain images and their results If the brain image has the tumor region, this image is needed to do preprocessing. The average filter is applied the input brain image. The size of the filter is 5 x 5 in this research. The noise is removed to get the smoothed image. The resulted image of the preprocessing step is shown in Fig-3. Fig- 3: The smoothed image using average filter After preprocessing, the resulted image is loaded into skull stripping process. Skull stripping based on threshold value can give the suitable result. Fig- 4 describes the result of the skull stripping process.
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 371 Fig-4: The output image without skull tissues for skull stripping step In the marker controlled watershed segmentation, the brain image without skull tissues is used to implement the step. Sobel operator is applied on the brain image without skull tissues and the gradient magnitude is calculated. Using the gradient magnitude, the gradient image is found out. After that, the watershed segmentation is estimated using gradient image. And then, the normal brain region and the tumor region are marked to get the final segmentation map. The segmented image obtained using marker controlled watershed segmentation is shown in Fig- 5. The image for the final segmentation map is described in Fig.-6. Fig- 5: The segmented image Fig-6: The final segmentation map After segmentation, the tumor region is detected from the segmented image. In this process, morphological operation is used to detect the tumor region. Morphological operation can efficiently detect the tumor region from the brain image. The output image for the detection process is shown in Fig- 7. Fig.-7: The image of the tumor region for the detection process After the tumor region had been obtained, the area of the tumor region is calculated using equation (5). The area of the tumor is get 0.3191 in2 . And then, the tumor location is determined using the output image obtained from the detection process. The result of the determination of the tumor location is described in Fig.-8. Fig- 8: The value of the tumor area and the location of the tumor
  • 6. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 372 Another input brain image is shown in Fig.-9 and the result image of the tumor region is illustrated in Fig-10. The area of the tumor region is 0.44301 in2 . Then, the location of the tumor region is shown in Fig.-11. Fig.-9: The input brain tumor image Fig.-10: The image of the tumor region Fig-11: The value of the tumor area and the location of the tumor 5. DISCUSSIONS In this paper, the brain image has been classified into normal brain image and abnormal brain image. This process can correctly classify the brain image in less execution time. And the average filter provides the suitable smoothed image for skull stripping step. Skull stripping is needed to do only in brain image. It is not needed to do other medical image processing such as heart, lung, etc. Skull stripping based on threshold value gives the reliable result for the next processing step such as segmentation, detection, and so on. But, this skull stripping method has a drawback. When the threshold value of non-brain tissues are equal to that of the brain tissues, this skull stripping method cannot efficiently remove the skull from the brain image. Therefore the skull tissues can leave in the brain image because of this drawback. But, this drawback can be overcome using morphological operation. Then, marker controlled watershed segmentation method can efficiently segment the MRI brain tumor image. This segmentation method can reduce the problem of over segmentation and gives the suitable segmentation map for detection of the tumor. Tumor detection using morphological operation can give the exact result of the tumor region. The equation of the tumor area in this research is suitable for any shape of the tumor region. It can give the exact value of the rumor region. In this system, the location of the tumor has been determined. This method can efficiently display the location of the tumor at left hemisphere or right hemisphere. 6. CONCLUSIONS In medical decision, the use of computer science plays an important role for analyzing various diseases. Magnetic resonance image (MRI) is a critical part in many researches. So the MRI brain image is used to implement the system. And morphological operation is used to detect the tumor region. It is easy to implement and reasonably fast. In this work, the brain image testing process has been done. This method is given the reliable result for the brain image. If the brain image has the tumor region, the further processing steps are needed to be done. The preprocessing step is important to segment the brain image. After the preprocessing, the brain image is free from noise and this smoothed image is ready to be used in further processing. In this system, a skull stripping based on threshold value has been done. This method is able to remove the skull tissues from the brain image and give the suitable result. And then, marker controlled watershed segmentation has been done. Therefore, the intensity of normal brain tissues and that of tumor region is split up into groups. After segmentation, this resulted image is divided into the normal brain region and the tumor region to get the final segmentation map. After that, the tumor region is detected from the final segmentation map using morphological operation. And the tumor region is calculated according to the equation (5). Finally, the location of the tumor region has been
  • 7. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 373 determined based on the pixel value of the tumor region. The right part of the image and the left part of the image are defined by manually in this process. Therefore, the location of the tumor is needed to define automatically. In this paper, the tumor region is extracted from the single MRI brain slice. Really, MRI scan take the picture of the brain in many slices. And the tumor region is not located in the single slice. Above the reason, the tumor volume is needed to calculate. The volume of the tumor is calculated to get the exact result of the tumor region. Therefore, the tumor volume is needed to calculate. The tumor volume can be calculated using Frustum model. ACKNOWLEDGMENT The author would like to acknowledge the head of Department of Electronic Engineering, Mandalay Technological University. The author is highly grateful to all the teachers, Department of Electronic Engineering, Mandalay Technological University. The author specially wants to thank her supervisor Dr. Aung Soe Khaing, Department of Electronic Engineering, Mandalay Technological University for his guidance and constant encouragement throughout the work. REFERENCES [1]. Skull Stripping of MRI Head Scans based on Chan- Vese Active Contour Model, [Online Available], www.med.harvad.edu/AANLIB/home.html, accessed on 8 August 2013. [2]. Magnetic Resonance Image, [Online Available], www.CEwebsource.com, accessed on 18 June 2013. [3]. Pratik P. Singhai, Siddharth A. Ladhake, “Brain Tumor Detection using Marker Based Watershed Segmentation from Digital MR images”, International Journal of Innovative Technology and Exploring Engineering (IJITEE) ISSN: 2278-3075, Volume-2, Issue-5, April 2013. [4]. A.Jeeviitha, P. Narendran, “BTS (Brain Tumor Segmentation) Based on Otus Thresholding,” Indian Journal of Research, Volume:2, Issue:2, ISSN- 2250- 1991, February 2013. [5]. Manor K Kowari and Sourabh Yadav, “Brain Tumor Detection and Segmentation using Histogram Thresholding”, International Journal of Engineering and Advanced Technology (IJEAT) ISSN: 2249-898, Volume-1, Issue-4, Journal, India, April 2012. [6]. M. Masroor Ahmed, Dzulkifli Bin Mohamad, “Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clustering and Perona-Malik Anisotropic Diffusion model. [7]. Nagalkaar. V.J and Asole S.S, “Brain Tumor Detection using Digital Image Processing based on Soft Computing,” Journal of Signal and Image Processing, Volume 3, Issue 3, Issn: 0976-8882, 2012. [8]. Rajesh C.Patil, Dr. A. S.Bhalchandra, “Brain Tumor Extraction from MRI Images using MATLAB,” International Journal of Electronics, Communication & Soft Computing Science and Engineering, Volume 2, Issue 1, ISSN: 2277-9477. [9]. S Jayaraman, S Esakkirajan and TVeerakumar, Digital Image Processing, 3rd Edition, Tata McGraw Hill, 2010, ISBN (13): 978-0-07-014479-8, ISBN (10): 0- 070114479-6. [10]. M. C Jobin Christ, R.M.S. Paravathi, “Segmentation of Medical Image using Clustering and Watershed Algorithms”, American Journal of Applied Sciences 8(2): 1349-152, 2011 ISSN 1546-9239© 2011 Science Publication. [11]. Dibyendu Goshal, Pinaki Pratim Acharjya, “MRI Image Segmentation using Watershed Transform”, International Journal of Emerging Technology and Advanced Engineering, ISSN 2250-2459, Volume 2, Issue 4, April 2012. [12]. “Biosignal and Biomedical Image Processing”, [Online Available], www.dekker.com, accessed on 11 October 2013. [13]. Rosniza Roslan, Nursuriati Jamil and Rozi Mahmud, “Skull Stripping Magnetic Resonance Images Brain Images: region Growing versus Mathematical Morphology”, International Journal of Computer Information Systems and Industrial Management applications, ISSN 2150-7988, Volume (2011). BIOGRAPHIES Swe Zin Oo received her bachelor of engineering in Electronics from Mandalay Technological University, Myanmar in 2007. She is presently a master student at the Mandalay Technological University, Myanmar. Her research interests include skull stripping, image segmentation and tumor detection.
  • 8. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 374 Aung Soe Khaing received his PhD in electronic engineering from Mandalay Technological University, Myanmar, in 2011. He was doing research on Spatial Frequency Analysis of the Human Brain at the Institute of Biomedical Engineering and Informatics, Technical University Ilmenau, Germany. He is now Associate Professor at Department of Electronic Engineering, Mandalay Technological University, Myanmar. His research interests include computer based Electrocardiogram (ECG) system, biomedical signal and image processing, biointrumentation and telemedicine.