SlideShare a Scribd company logo
1 of 4
Download to read offline
Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and
Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643
1640 | P a g e
Performance Analysis of Color Based Region Split and Merge
and Otsu’s Thresholding Techniques for Brain Tumor Extraction
Sheenam Bansal1
, Dr. Raman Maini2
1
Research Scholar, University College of Engineering, Punjabi University, Patiala
2
Professor, University College of Engineering, Punjabi University, Patiala
ABSTRACT
A brain tumor is a solid mass of
abnormal cells within the brain.It is a set of some
tissues that occur due to the rise of uncontrolled
cell division. The work forms an image processing
pipeline, consisting of noise reduction, feature
extraction by image segmentation morphological
operations to extract the region of interest. The
work is based on the simultaneous use of two
segmentation techniques, CB region split and
merge segmentation and Otsu’s Thresholding to
extract the area of brain containing tumor from
the magnetic resonance imaging (MRI) of brain.It
has been observed that the otsu’s thresholding
technique gives a better performance in terms of
accuracy and diagnosing the complete tumor
region from the MRI. The results of this study are
quiet promising.
Keywords: Color Based Region Split and Merge,
Otsu’s thresholding method ,Segmentation,.
I. INTRODUCTION
A brain tumor is said to be an intracranial
solid neoplasm that grows within the brain.It is a set
of some abnormal tissues that have arisen due to
uncontrolled cell division.[1]In normal cell growth
the old cells or the damaged ones are replaced by
new cells but in abnormal growth, for ceratin
unknown reasons the tumor cells keep reproducing at
a rapid speed. Brain tumors areclassified based on
the cell type from which they grow. They may be
primary (starting in the brain) or secondary
(spreading to the brain from another area).Various
treatment are available in today’s time which vary
depending on the tumor type, size and location, the
age and medical health of the person[1,2].
Magnetic Resonance Imaging has been the
major model to diagnose brain tumor from years. It is
most commonly utilized for lesion detection,
definition of extent, detection of spread and in
evaluation of either residual or recurrent disease.
Magnetic Resoance imaging has multiplanar
imaging capability, high sensitivity to pathologic
processes, and excellent anatomic detail which
makes it virtually be the choice of imaging study in
the evaluation of intracerebral tumors if cost and
availability were not issues. Nowadays there are
several methodology for classifying MR images,
which are fuzzy methods, neural networks, atlas
methods, knowledge based techniques, shape
methods, variation segmentation[3,4].
The major process involved here is of
segmentation. The first step is to preprocess the
image to remove noise and enhance the edges. The
preprocessed image is then segmented and the final
output is obtained by post processing with the help of
morphological operations. The two algorithms have
been applied on several MRI scans .
II. METHODOLOGY
The two techniques applied here follows the
same three stages [5]:
i. Preprocessing of the image
ii. Segmentation on the preprocessed
image
iii. Post processing applied on segmented
image.
2.1 Color Based Region Split And Merge
Split and merge is a region based segmentation
that defines a predicate Q which is the basis of
spitting and merging.The steps of execution are:
1. Split into different regions, Ri for which
Q(Ri)=FALSE
2. When no further splitting is possible,merge
adjacent regions Ri and Rj for which Q(Ri U
Rj)=TRUE
3. Stop hn no merging is possible.
The work here is based on colored Region
plit and merge. This method eliminates the need of
user intervention and make this technique fully
automatic without any need to give an initial seed
point for the progress of algorithm[6].
The first step is to use median filter to
remove salt and pepper noise and enhance the
edges.In the segmentation,the initial step is to convert
the original gray image to RGB model. This RGB
image is then converted to L*a*b color space (,a
Lab colorspace is color-opponent space with
dimension L for lightness and a and b for the color-
opponent dimensions, based on nonlinearly
compressed CIE XYZ color space coordinates).The
next step is to identify total number of different
colors in image to split the source Lab space image
depending upon the color value.Initially,we chose a
small sample region for each color space and then
Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and
Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643
1641 | P a g e
calculate each region’s average color value.Calculate
the mean values for areas extracted with roipoly
command in MATLAB.Then classify each pixel by
calculating the Euclidean distance between the pixel
and each color marker and the image is segmented
based on different colors After the image has been
split using the color markers, it has to be merged to
obtain the tumor image. For this, first the image is
converted into gray image and then it is converted to
binary image using a threshold calculated by
graythresh function. To merge, all the connected
components have to be removed with the pixels less
than 30 (it has been observed that the brain contains
five different type of classes : the foreground,
background, boundaries, holes and blood vessels ,the
brain tumor will not contain less than 30 pixels).Then
all the holes and boudaries are removed to obtain the
final segmented image.
To the segmented image, the postprocessing is done
which involves application of dilation operation
followed by erosion.
2.2 Otsu’s Thresholding Technique
Otsu’s method selects the threshold by
minimizing the within-class variance of the two
groups of pixels separated by the thresholding
operator which in turn maximizes the between-class
variance. The separability of two classes is given by:
(1)
And
(2)
Then the optimum threshold is that value of
k that maximizes . [7]
The method has been implemented in MATLAB
7.0.Firstly the image is preprocessed by applying a
high pass filter of matrix of form:
Fig 1: Filter to enhance the image
After this the median filter is applied to the
image.Then segmentation is done.In the methodlogy
implemented,using the graythresh function of
MATALB,a threshold value is obtained and since the
tumor region is a highly illuminated region,a value of
0.3 is added to the threshold value computed so that it
can correctly diagonise the tumor area.The final
threshold thus obtained is applied on the
preprocessed image to convert it to a binary image
with this threshold value.The image is thus
segmented and this image is further ready for post
processing to obtain the final tumor image which
involves repeated use of dilation and erosion
operation,for this a structuring element of shape
‘disk’ with radius 1 has been used.
III. RESULTS AND DISCUSSIONS
3.1 Qualitative Results
The two techniques have been implemented
in MATLAB 7.0 .Using the GUI ,the image is
browsed for which the brain tumor has to be
extracted. The results for the two techniques that
have been implemeneted follows in this section.It has
been found that the otsu’s thresholding technique has
found to work better in terms of accuracy for
extracting brain tumor than color based region split
and merge.The color based region split and merge
fails to identify the difference between boundaries
and tumor area while the otsu’s technique clearly
extracts the tumor area,giving a better result.The
images are as follows:
Fig 2(a,b,c,d,e): Result of applying Otsu’s
Thresholding technique for segmentation,the first
column has the original image,the second is the
segmented image.
-1 2 -1
0 0 0
1 -2 1
Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and
Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643
1642 | P a g e
The following images show the result of application
of color based region split and merge :
Fig 3(a,b,c,d,e):Result of applying CB Region Split
and Merge technique for segmentation,the first
column has the original image,the second is the
colored image of original and third column has the
segmented image
3.2 Quantitative Results
3.2.1 Specificity
Specificity measures the performance by
giving a propotion of negatives which are correctly
identified as such(eg: the percentage of healthy
people identified to not have the condition to be
sick). It relates to the test’s ability to identify
negative results.
Numerically,it can be stated as,
(3)
Highly specific tests rarely misses negative
outcomes so they can be considered reliable when
their result is positive[8,9].
3.2.2 Sensitiviy
Sensitivity is the measure of proportion of
actual positives which are correctly identified as
such.It relates to the test’s ability to identify positive
results[8,9].
Numerically,it can be stated as,
(4)
3.2.3 Accuracy
Accuracy is the proportion of correctly
diagnosed cases from the total number of
cases.Numerically it is calculated as,
(5)
The following table gives the values of
various parameters for otsu’s threshold and color
based region split and merge
CB Split and
Merge
Otsu’s
Method
No of test images 16 16
True positives(TP) 9 14
True negativs(TN) 7 11
False positives(FP) 2 3
False ngatives(FN) 7 2
Sensitivity 56.25% 87.5 %
Specificity 77.77% 78.57 %
Accuracy 64 % 83.33 %
Table 1: Values of parameters for two tests
A higher value of sensitivity and specificity
in case of otsu’s thresholding method indicates it
gives a higher performance as it has greater ability to
predict positive and negative outcomes as compared
to the Color Based Split and Merge and the results of
Otsu’s method are highly accurate.
IV. CONCLUSIONS
After the above investigation the main point
of winding up of the performance analysis of CB
Region Split and Merge Image Segmentation
technique and Otsu’s thresholding using brain tumor
extraction is that otsu’s method gives a better
performance for extracting the brain tumor. Our
motive was to detect if there is tumor present in the
MRI image (i.e. YES or NO), but the research ended
up successfully with the extraction of brain tumor
from the MRI using both techniques and comparing
the results of two to indicate which gives a better
performance.
After conduction of this experimentation it
was very comprehensible from the obtained results
that using Otsu’s thresholding segmentation was
more productive as compared to CB region split and
merge in terms of accuracy. And also it has been
observed that both the methods are more efficient as
compared to other algorithms followed under Region
Growing but the only shortcoming that both
encounter is of time, means both the techniques are a
little time consumimg.
Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and
Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643
1643 | P a g e
REFERENCES
[1] Maintz, J. and Viergever, M. (1998). An
overview of medical image registration
methods. Medical Image Analysis,Vol 2,1–
36
[2] Brown, M. and Semeka, R. (2003). MRI:
Basic Principles and Applications.John
Wiley and Sons, Inc., Vol. 3
[3] Schad, L., Bluml, S., and Zuna, I. (1993).
MR tissue characterization of intracranial
tumors by means of texture analysis.
Magnetic Resonance Imaging,Vol. 11,Issue
6,889
[4] Wang Zhengjia, Brain tumor detection from
3d magnetic resonance images,full thesis
[5] Capelle, A., Alata, O., Fernandez, C.,
Lefevre, S., and Ferrie, J. (2000).
Unsupervised Segmentation for automatic
detection of brain tumors in mri. In IEEE
International Conference on Image
Processing, pages 613–616
[6] Schad, L., Bluml, S., and Zuna, I. (1993).
MR tissue characterization of intracranial
tumors by means of texture analysis.
Magnetic Resonance Imaging,Vol. 11,Issue
6,889
[7] Dr.N. Nandha Gopal, Automatic Detection
Of Brain Tumor Through Magnetic
Resonance Image, International Journal of
Advanced Research in Computer and
Communication Engineering Vol. 2, Issue 4
[8] Otsu, N. (1979). A threshold selection
method from gray-level historgrams. IEEE
Trans. Systems, Man adn Cybernetics, vol
9,Issue 1
[9] www.wikipedia.org/wiki/Sensitivityand_
specificit

More Related Content

What's hot

Survey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation TechniquesSurvey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation TechniquesEditor IJMTER
 
Improvement oh the recognition rate by random forest
Improvement oh the recognition rate by random forestImprovement oh the recognition rate by random forest
Improvement oh the recognition rate by random forestYoussef Rachidi
 
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...Akshit Arora
 
Improvement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random ForestImprovement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random ForestIJERA Editor
 
Report medical image processing image slice interpolation and noise removal i...
Report medical image processing image slice interpolation and noise removal i...Report medical image processing image slice interpolation and noise removal i...
Report medical image processing image slice interpolation and noise removal i...Shashank
 
Brain Tumor Area Calculation in CT-scan image using Morphological Operations
Brain Tumor Area Calculation in CT-scan image using Morphological OperationsBrain Tumor Area Calculation in CT-scan image using Morphological Operations
Brain Tumor Area Calculation in CT-scan image using Morphological Operationsiosrjce
 
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...CSCJournals
 
FUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHM
FUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHMFUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHM
FUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHMAM Publications
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Image Registration
Image RegistrationImage Registration
Image RegistrationAngu Ramesh
 
Wound epithelization model by 3 d imaging
Wound epithelization model by 3 d imagingWound epithelization model by 3 d imaging
Wound epithelization model by 3 d imagingeSAT Publishing House
 
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...IJSRD
 
OBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONS
OBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONSOBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONS
OBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONSijcseit
 
Disparity Estimation by a Real Time Approximation Algorithm
Disparity Estimation by a Real Time Approximation AlgorithmDisparity Estimation by a Real Time Approximation Algorithm
Disparity Estimation by a Real Time Approximation AlgorithmCSCJournals
 

What's hot (18)

G011134454
G011134454G011134454
G011134454
 
Survey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation TechniquesSurvey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation Techniques
 
Improvement oh the recognition rate by random forest
Improvement oh the recognition rate by random forestImprovement oh the recognition rate by random forest
Improvement oh the recognition rate by random forest
 
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
 
Improvement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random ForestImprovement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random Forest
 
Report medical image processing image slice interpolation and noise removal i...
Report medical image processing image slice interpolation and noise removal i...Report medical image processing image slice interpolation and noise removal i...
Report medical image processing image slice interpolation and noise removal i...
 
Brain Tumor Area Calculation in CT-scan image using Morphological Operations
Brain Tumor Area Calculation in CT-scan image using Morphological OperationsBrain Tumor Area Calculation in CT-scan image using Morphological Operations
Brain Tumor Area Calculation in CT-scan image using Morphological Operations
 
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...
Segmentation of Brain MR Images for Tumor Extraction by Combining Kmeans Clus...
 
FUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHM
FUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHMFUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHM
FUZZY SEGMENTATION OF MRI CEREBRAL TISSUE USING LEVEL SET ALGORITHM
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Image Registration
Image RegistrationImage Registration
Image Registration
 
Id105
Id105Id105
Id105
 
Wound epithelization model by 3 d imaging
Wound epithelization model by 3 d imagingWound epithelization model by 3 d imaging
Wound epithelization model by 3 d imaging
 
Bx4301429434
Bx4301429434Bx4301429434
Bx4301429434
 
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
 
OBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONS
OBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONSOBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONS
OBJECT SEGMENTATION USING MULTISCALE MORPHOLOGICAL OPERATIONS
 
A METHODICAL WAY OF IMAGE REGISTRATION IN DIGITAL IMAGE PROCESSING
A METHODICAL WAY OF IMAGE REGISTRATION IN DIGITAL IMAGE PROCESSING A METHODICAL WAY OF IMAGE REGISTRATION IN DIGITAL IMAGE PROCESSING
A METHODICAL WAY OF IMAGE REGISTRATION IN DIGITAL IMAGE PROCESSING
 
Disparity Estimation by a Real Time Approximation Algorithm
Disparity Estimation by a Real Time Approximation AlgorithmDisparity Estimation by a Real Time Approximation Algorithm
Disparity Estimation by a Real Time Approximation Algorithm
 

Viewers also liked (20)

He3413241328
He3413241328He3413241328
He3413241328
 
Hj3413671376
Hj3413671376Hj3413671376
Hj3413671376
 
Fh33953956
Fh33953956Fh33953956
Fh33953956
 
Fi33957960
Fi33957960Fi33957960
Fi33957960
 
Ew33895899
Ew33895899Ew33895899
Ew33895899
 
Ff33946949
Ff33946949Ff33946949
Ff33946949
 
Fa33921924
Fa33921924Fa33921924
Fa33921924
 
Fc33929934
Fc33929934Fc33929934
Fc33929934
 
Fz3310671070
Fz3310671070Fz3310671070
Fz3310671070
 
C350712
C350712C350712
C350712
 
Mo3422492258
Mo3422492258Mo3422492258
Mo3422492258
 
Mp3422592263
Mp3422592263Mp3422592263
Mp3422592263
 
Ab35157161
Ab35157161Ab35157161
Ab35157161
 
Nv3424352438
Nv3424352438Nv3424352438
Nv3424352438
 
Op3425432547
Op3425432547Op3425432547
Op3425432547
 
Ol3425172524
Ol3425172524Ol3425172524
Ol3425172524
 
Oo3425382542
Oo3425382542Oo3425382542
Oo3425382542
 
Ou3425912596
Ou3425912596Ou3425912596
Ou3425912596
 
Gx3412721276
Gx3412721276Gx3412721276
Gx3412721276
 
Aragnids
AragnidsAragnids
Aragnids
 

Similar to Performance Analysis of Otsu's Thresholding and Color Based Region Splitting for Brain Tumor Segmentation

Image Segmentation Based Survey on the Lung Cancer MRI Images
Image Segmentation Based Survey on the Lung Cancer MRI ImagesImage Segmentation Based Survey on the Lung Cancer MRI Images
Image Segmentation Based Survey on the Lung Cancer MRI ImagesIIRindia
 
MRI_processing
MRI_processingMRI_processing
MRI_processingLitu Rout
 
brain tumor detection by thresholding approach
brain tumor detection by thresholding approachbrain tumor detection by thresholding approach
brain tumor detection by thresholding approachSahil Prajapati
 
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...ijtsrd
 
Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...
Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...
Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...ijcseit
 
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
 
Multiple Analysis of Brain Tumor Detection Based on FCM
Multiple Analysis of Brain Tumor Detection Based on FCMMultiple Analysis of Brain Tumor Detection Based on FCM
Multiple Analysis of Brain Tumor Detection Based on FCMIRJET Journal
 
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
 
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
 
Comparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniquesComparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniquesIAEME Publication
 
SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...
SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...
SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...ijcsit
 
IRJET-A Novel Approach for MRI Brain Image Classification and Detection
IRJET-A Novel Approach for MRI Brain Image Classification and DetectionIRJET-A Novel Approach for MRI Brain Image Classification and Detection
IRJET-A Novel Approach for MRI Brain Image Classification and DetectionIRJET Journal
 
Literature survey for 3 d reconstruction of brain mri images
Literature survey for 3 d reconstruction of brain mri imagesLiterature survey for 3 d reconstruction of brain mri images
Literature survey for 3 d reconstruction of brain mri imageseSAT Journals
 
Literature survey for 3 d reconstruction of brain mri
Literature survey for 3 d reconstruction of brain mriLiterature survey for 3 d reconstruction of brain mri
Literature survey for 3 d reconstruction of brain mrieSAT Publishing House
 
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGESA HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGESsipij
 
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGESA HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGESsipij
 

Similar to Performance Analysis of Otsu's Thresholding and Color Based Region Splitting for Brain Tumor Segmentation (20)

Q04503100104
Q04503100104Q04503100104
Q04503100104
 
Image Segmentation Based Survey on the Lung Cancer MRI Images
Image Segmentation Based Survey on the Lung Cancer MRI ImagesImage Segmentation Based Survey on the Lung Cancer MRI Images
Image Segmentation Based Survey on the Lung Cancer MRI Images
 
Az03303230327
Az03303230327Az03303230327
Az03303230327
 
MRI_processing
MRI_processingMRI_processing
MRI_processing
 
brain tumor detection by thresholding approach
brain tumor detection by thresholding approachbrain tumor detection by thresholding approach
brain tumor detection by thresholding approach
 
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
 
Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...
Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...
Automatic Diagnosis of Abnormal Tumor Region from Brain Computed Tomography I...
 
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...
 
Multiple Analysis of Brain Tumor Detection Based on FCM
Multiple Analysis of Brain Tumor Detection Based on FCMMultiple Analysis of Brain Tumor Detection Based on FCM
Multiple Analysis of Brain Tumor Detection Based on FCM
 
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
 
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
 
Comparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniquesComparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniques
 
SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...
SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...
SEGMENTATION OF MAGNETIC RESONANCE BRAIN TUMOR USING INTEGRATED FUZZY K-MEANS...
 
BRAIN CANCER CLASSIFICATION USING BACK PROPAGATION NEURAL NETWORK AND PRINCIP...
BRAIN CANCER CLASSIFICATION USING BACK PROPAGATION NEURAL NETWORK AND PRINCIP...BRAIN CANCER CLASSIFICATION USING BACK PROPAGATION NEURAL NETWORK AND PRINCIP...
BRAIN CANCER CLASSIFICATION USING BACK PROPAGATION NEURAL NETWORK AND PRINCIP...
 
C1103041623
C1103041623C1103041623
C1103041623
 
IRJET-A Novel Approach for MRI Brain Image Classification and Detection
IRJET-A Novel Approach for MRI Brain Image Classification and DetectionIRJET-A Novel Approach for MRI Brain Image Classification and Detection
IRJET-A Novel Approach for MRI Brain Image Classification and Detection
 
Literature survey for 3 d reconstruction of brain mri images
Literature survey for 3 d reconstruction of brain mri imagesLiterature survey for 3 d reconstruction of brain mri images
Literature survey for 3 d reconstruction of brain mri images
 
Literature survey for 3 d reconstruction of brain mri
Literature survey for 3 d reconstruction of brain mriLiterature survey for 3 d reconstruction of brain mri
Literature survey for 3 d reconstruction of brain mri
 
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGESA HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
 
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGESA HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
A HYBRID APPROACH BASED SEGMENTATION TECHNIQUE FOR BRAIN TUMOR IN MRI IMAGES
 

Recently uploaded

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetEnjoy Anytime
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Hyundai Motor Group
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 

Recently uploaded (20)

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 

Performance Analysis of Otsu's Thresholding and Color Based Region Splitting for Brain Tumor Segmentation

  • 1. Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643 1640 | P a g e Performance Analysis of Color Based Region Split and Merge and Otsu’s Thresholding Techniques for Brain Tumor Extraction Sheenam Bansal1 , Dr. Raman Maini2 1 Research Scholar, University College of Engineering, Punjabi University, Patiala 2 Professor, University College of Engineering, Punjabi University, Patiala ABSTRACT A brain tumor is a solid mass of abnormal cells within the brain.It is a set of some tissues that occur due to the rise of uncontrolled cell division. The work forms an image processing pipeline, consisting of noise reduction, feature extraction by image segmentation morphological operations to extract the region of interest. The work is based on the simultaneous use of two segmentation techniques, CB region split and merge segmentation and Otsu’s Thresholding to extract the area of brain containing tumor from the magnetic resonance imaging (MRI) of brain.It has been observed that the otsu’s thresholding technique gives a better performance in terms of accuracy and diagnosing the complete tumor region from the MRI. The results of this study are quiet promising. Keywords: Color Based Region Split and Merge, Otsu’s thresholding method ,Segmentation,. I. INTRODUCTION A brain tumor is said to be an intracranial solid neoplasm that grows within the brain.It is a set of some abnormal tissues that have arisen due to uncontrolled cell division.[1]In normal cell growth the old cells or the damaged ones are replaced by new cells but in abnormal growth, for ceratin unknown reasons the tumor cells keep reproducing at a rapid speed. Brain tumors areclassified based on the cell type from which they grow. They may be primary (starting in the brain) or secondary (spreading to the brain from another area).Various treatment are available in today’s time which vary depending on the tumor type, size and location, the age and medical health of the person[1,2]. Magnetic Resonance Imaging has been the major model to diagnose brain tumor from years. It is most commonly utilized for lesion detection, definition of extent, detection of spread and in evaluation of either residual or recurrent disease. Magnetic Resoance imaging has multiplanar imaging capability, high sensitivity to pathologic processes, and excellent anatomic detail which makes it virtually be the choice of imaging study in the evaluation of intracerebral tumors if cost and availability were not issues. Nowadays there are several methodology for classifying MR images, which are fuzzy methods, neural networks, atlas methods, knowledge based techniques, shape methods, variation segmentation[3,4]. The major process involved here is of segmentation. The first step is to preprocess the image to remove noise and enhance the edges. The preprocessed image is then segmented and the final output is obtained by post processing with the help of morphological operations. The two algorithms have been applied on several MRI scans . II. METHODOLOGY The two techniques applied here follows the same three stages [5]: i. Preprocessing of the image ii. Segmentation on the preprocessed image iii. Post processing applied on segmented image. 2.1 Color Based Region Split And Merge Split and merge is a region based segmentation that defines a predicate Q which is the basis of spitting and merging.The steps of execution are: 1. Split into different regions, Ri for which Q(Ri)=FALSE 2. When no further splitting is possible,merge adjacent regions Ri and Rj for which Q(Ri U Rj)=TRUE 3. Stop hn no merging is possible. The work here is based on colored Region plit and merge. This method eliminates the need of user intervention and make this technique fully automatic without any need to give an initial seed point for the progress of algorithm[6]. The first step is to use median filter to remove salt and pepper noise and enhance the edges.In the segmentation,the initial step is to convert the original gray image to RGB model. This RGB image is then converted to L*a*b color space (,a Lab colorspace is color-opponent space with dimension L for lightness and a and b for the color- opponent dimensions, based on nonlinearly compressed CIE XYZ color space coordinates).The next step is to identify total number of different colors in image to split the source Lab space image depending upon the color value.Initially,we chose a small sample region for each color space and then
  • 2. Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643 1641 | P a g e calculate each region’s average color value.Calculate the mean values for areas extracted with roipoly command in MATLAB.Then classify each pixel by calculating the Euclidean distance between the pixel and each color marker and the image is segmented based on different colors After the image has been split using the color markers, it has to be merged to obtain the tumor image. For this, first the image is converted into gray image and then it is converted to binary image using a threshold calculated by graythresh function. To merge, all the connected components have to be removed with the pixels less than 30 (it has been observed that the brain contains five different type of classes : the foreground, background, boundaries, holes and blood vessels ,the brain tumor will not contain less than 30 pixels).Then all the holes and boudaries are removed to obtain the final segmented image. To the segmented image, the postprocessing is done which involves application of dilation operation followed by erosion. 2.2 Otsu’s Thresholding Technique Otsu’s method selects the threshold by minimizing the within-class variance of the two groups of pixels separated by the thresholding operator which in turn maximizes the between-class variance. The separability of two classes is given by: (1) And (2) Then the optimum threshold is that value of k that maximizes . [7] The method has been implemented in MATLAB 7.0.Firstly the image is preprocessed by applying a high pass filter of matrix of form: Fig 1: Filter to enhance the image After this the median filter is applied to the image.Then segmentation is done.In the methodlogy implemented,using the graythresh function of MATALB,a threshold value is obtained and since the tumor region is a highly illuminated region,a value of 0.3 is added to the threshold value computed so that it can correctly diagonise the tumor area.The final threshold thus obtained is applied on the preprocessed image to convert it to a binary image with this threshold value.The image is thus segmented and this image is further ready for post processing to obtain the final tumor image which involves repeated use of dilation and erosion operation,for this a structuring element of shape ‘disk’ with radius 1 has been used. III. RESULTS AND DISCUSSIONS 3.1 Qualitative Results The two techniques have been implemented in MATLAB 7.0 .Using the GUI ,the image is browsed for which the brain tumor has to be extracted. The results for the two techniques that have been implemeneted follows in this section.It has been found that the otsu’s thresholding technique has found to work better in terms of accuracy for extracting brain tumor than color based region split and merge.The color based region split and merge fails to identify the difference between boundaries and tumor area while the otsu’s technique clearly extracts the tumor area,giving a better result.The images are as follows: Fig 2(a,b,c,d,e): Result of applying Otsu’s Thresholding technique for segmentation,the first column has the original image,the second is the segmented image. -1 2 -1 0 0 0 1 -2 1
  • 3. Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643 1642 | P a g e The following images show the result of application of color based region split and merge : Fig 3(a,b,c,d,e):Result of applying CB Region Split and Merge technique for segmentation,the first column has the original image,the second is the colored image of original and third column has the segmented image 3.2 Quantitative Results 3.2.1 Specificity Specificity measures the performance by giving a propotion of negatives which are correctly identified as such(eg: the percentage of healthy people identified to not have the condition to be sick). It relates to the test’s ability to identify negative results. Numerically,it can be stated as, (3) Highly specific tests rarely misses negative outcomes so they can be considered reliable when their result is positive[8,9]. 3.2.2 Sensitiviy Sensitivity is the measure of proportion of actual positives which are correctly identified as such.It relates to the test’s ability to identify positive results[8,9]. Numerically,it can be stated as, (4) 3.2.3 Accuracy Accuracy is the proportion of correctly diagnosed cases from the total number of cases.Numerically it is calculated as, (5) The following table gives the values of various parameters for otsu’s threshold and color based region split and merge CB Split and Merge Otsu’s Method No of test images 16 16 True positives(TP) 9 14 True negativs(TN) 7 11 False positives(FP) 2 3 False ngatives(FN) 7 2 Sensitivity 56.25% 87.5 % Specificity 77.77% 78.57 % Accuracy 64 % 83.33 % Table 1: Values of parameters for two tests A higher value of sensitivity and specificity in case of otsu’s thresholding method indicates it gives a higher performance as it has greater ability to predict positive and negative outcomes as compared to the Color Based Split and Merge and the results of Otsu’s method are highly accurate. IV. CONCLUSIONS After the above investigation the main point of winding up of the performance analysis of CB Region Split and Merge Image Segmentation technique and Otsu’s thresholding using brain tumor extraction is that otsu’s method gives a better performance for extracting the brain tumor. Our motive was to detect if there is tumor present in the MRI image (i.e. YES or NO), but the research ended up successfully with the extraction of brain tumor from the MRI using both techniques and comparing the results of two to indicate which gives a better performance. After conduction of this experimentation it was very comprehensible from the obtained results that using Otsu’s thresholding segmentation was more productive as compared to CB region split and merge in terms of accuracy. And also it has been observed that both the methods are more efficient as compared to other algorithms followed under Region Growing but the only shortcoming that both encounter is of time, means both the techniques are a little time consumimg.
  • 4. Sheenam Bansal, Dr. Raman Maini / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 4, Jul-Aug 2013, pp.1640-1643 1643 | P a g e REFERENCES [1] Maintz, J. and Viergever, M. (1998). An overview of medical image registration methods. Medical Image Analysis,Vol 2,1– 36 [2] Brown, M. and Semeka, R. (2003). MRI: Basic Principles and Applications.John Wiley and Sons, Inc., Vol. 3 [3] Schad, L., Bluml, S., and Zuna, I. (1993). MR tissue characterization of intracranial tumors by means of texture analysis. Magnetic Resonance Imaging,Vol. 11,Issue 6,889 [4] Wang Zhengjia, Brain tumor detection from 3d magnetic resonance images,full thesis [5] Capelle, A., Alata, O., Fernandez, C., Lefevre, S., and Ferrie, J. (2000). Unsupervised Segmentation for automatic detection of brain tumors in mri. In IEEE International Conference on Image Processing, pages 613–616 [6] Schad, L., Bluml, S., and Zuna, I. (1993). MR tissue characterization of intracranial tumors by means of texture analysis. Magnetic Resonance Imaging,Vol. 11,Issue 6,889 [7] Dr.N. Nandha Gopal, Automatic Detection Of Brain Tumor Through Magnetic Resonance Image, International Journal of Advanced Research in Computer and Communication Engineering Vol. 2, Issue 4 [8] Otsu, N. (1979). A threshold selection method from gray-level historgrams. IEEE Trans. Systems, Man adn Cybernetics, vol 9,Issue 1 [9] www.wikipedia.org/wiki/Sensitivityand_ specificit