SlideShare a Scribd company logo
1 of 4
Download to read offline
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, Issue 4, April 2013
All Rights Reserved © 2013 IJARCET
1314

Abstract— Segmentation of the white matter from the brain
fMRI images for the study of brain activities and for the
diagnosis for various brain related diseases caused by the
changes and damages to regions of the brain continues on a
manual time consuming segmentation technique. We present a
solution for automatic segmentation of the brain fMRI images;
the solution contains three steps which are pre-processing the
raw images, threshold estimation using an Otsu’s algorithm and
finally performing the segmentation by binarization of the
images based on the calculated threshold value.
Index Terms— brain, fMRI, grey matter, threshold,
segmentation, white matter.
I. INTRODUCTION
The fMRI stands for functional magnetic resonance
imaging is an MRI procedure that measures brain activity by
detecting associated changes in blood flow [1], unlike MRI
images which gives only the structural aspects of the brain
fMRI provides both the structural and the functional aspects
of the brain. Hence this feature allows the physicians to study
the functionalities of the brain as well as to diagnose the brain
related diseases.
There are three parts in fMRI projections of which are
grey matter [2] formed basically by neurons, white matter[3]
formed by axon extremities with mylelins, and cerebrospinal
fluid, changes and damages in these regions can cause various
diseases. The white matter segmentation from the brain
images plays a major role in the study of brain activities,
based on the distribution of the white matter in the brain it is
possible to determine which part of the brain is more active
while performing certain activities, for example brain activity
study involves determining the structure and the distribution
of the white matter when a person is happy, sad, watching TV,
walking or performing other day to day activities etc. the
white matter segmentation also enables in the diagnosis of
the white matter diseases[4], MS(multiple sclerosis) and
demyelinated diseases, minor cardiovascular diseases,
neurologic damages, and blindness can be listed.
II. LITERATURE SURVEY
The fMRI images can be taken in three views namely
coronel, axial and sagittal. Each of these views typically
contains 60 to 70 image slices. The current method of
segmentation of the white matter from the brain fMRI images
is done using a manual segmentation (hand segmentation),
this method has the following disadvantages:
 Time consumption: It takes around 48 to 72 hours to
manually segment the white matter from the gray
matter of the brain fMRI images.
 Extra Labor: To manually segment the white matter
from the gray matter of the brain fMRI images it
requires a skilled labor with good training and
experience
 Lots of paper work: As the process of segmentation is
non reproducible. The entire process has to be
repeated if the image is slightly changed or if there
are minor errors in the process, hence requires a lot
of paper work.
In order to analyze anatomical structure in 3D volume
data, physicians need reliable segmentation methods. One of
the most frequently addressed problems is the segmentation
of MRI images of the human brain into gray matter and white
matter.
In recent years several methods for this have been made
available to the public, e.g. Freesurfer, slicer and SPM. All
those methods rely on a registration of the analyzed imaged
with pre-computed anatomical atlas providing a priori
information about spatial distribution of the tissue types. The
anatomical knowledge incorporated into the atlas allows high
quality segmentation, even when structures are hard to
distinguish visually. However, registration with an atlas is
time consuming and might not find a globally optimal solution
or even fail completely in the case of strong anatomical
anomalies. In those cases physicians have to fall back and
prone to inter-rater discrepancies.
In 2005 and 2006, a new atlas free brain segmentation
method was shown to able to deliver results of similar quality
to those produced by the established atlas based SPM method
even in the case of images without anatomical anomalies. The
method builds upon the 3D-CSC, a general segmentation
Segmentation of the White Matter from the Brain
fMRI Images
Kaushik K.S1
, Rakesh Kumar K.N2
, Suresha D3
1
Research scholar, Canara Engineering College, Mangalore
2
Research scholar, Canara Engineering College, Mangalore
3
Assistant Professor, Canara Engineering College, Mangalore
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, Issue 4, April 2013
1315
www.ijarcet.org
voxel images which partitions 3D images into gray value
similar, spatially connected regions. In 2007, several
improvements were introduced to 3D-CSC based
segmentation of TI weighted MRI images into white matter,
gray matter and non brain which further enhance both
reliability and quality while pertaining the computational
complexity of the method. As no time consuming registration
step is needed, the method is not only reliable, but also very
fast
I. PROPOSED SOLUTION
The fMRI brain images are captured using a fMRI scanner
will be in the form of Digital Imaging and Communications in
Medicine (DICOM) format, 60 image slices of a coronel view
of the brain is used in our experiment, figure 1 shows a centre
slice of typical fMRI brain image in a coronel view
.
Fig. 1 A Brain fMRI image in coronel view showing white matter and grey
matter
The main objective is to extract the white matter from the
rest of the image so that end users can analyze the segmented
result, the overall process of achieving this result and the flow
of data is shown in the figure 2.
As shown in the figure 2 the fMRI DICOM images are
obtained from the fMRI scanner will be stored in the Medical
information centre database, these data are obtained by the
system to perform white matter segmentation which includes
three steps preprocessing, threshold value estimation and
finally performing the segmentation procedure based on the
previously calculated threshold value, these three steps are in
detail in the following sections. The segmented white matter
binary image will be stored in the Medical information centre
database and finally the segmented white matter is analyzed
and examined by the physicians.
Fig. 2 A Brain analysis system architecture
A. Preprocessing
The fMRI images should be preprocessed to remove the
noise before performing the segmentation operation. Figure 3
shows the result of the segmentation process without
performing the preprocessing step.
Fig. 3 Segmented result without preprocessing
As shown in figure 3 the segmented result contains noise in
terms of background colour, skull bone, hard tissues,
cerebrospinal fluid and air. The preprocessing step involves
using a histogram based double thresholding technique to
remove the noise particles and to obtain the only the soft
tissue structure of the brain containing white matter and grey
matter.
Figure 4 shows the histogram distribution for the image in
figure 1, pixel count is taken in y-axis and the intensity is
taken in the x-axis, the pixels that are bounded by the red
rectangular box forms the soft brain tissues and the rest of the
pixels outside the rectangular box are considered as noise and
are removed by using a double thresholding technique [6].
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, Issue 4, April 2013
All Rights Reserved © 2013 IJARCET
1316
Fig.4 Histogram of the fMRI image showing pixels which forms the soft
tissue of the brain
Here we make use of two threshold values threshold11 and
threshold2 and then apply a thresholding operation as: A pixel
becomes black if its value is lesser than threshold1 or greater
than threshold2, and will remain as it if the pixel value is found
to be in-between threshold1 and threshold2, for example let X
be a pixel value whose value ranges from 0 to 255, then the
following algorithm is applied
Algorithm preprocessing (input threshold1, input threshold2,
input histogram)
{
if histogram is above threshold1
if histogram is below threshold2
return 1
else
return 0
}
In our experiment we have taken threshold1 as 40 and
threshold2 as 100, the pixel values less than 40 are found to be
a noise in the form of background colour, CSF and air, the
pixel values greater than 100 are found to be a noise in the
form of skull bone and hard tissue, the result after performing
the preprocessing step by applying double thresholding is
shown in figure 5.
Fig. 5 Segmented result with preprocessing
B. Threshold estimation
After obtaining the preprocessed data the next process
involves the calculation of threshold value to perform the
white matter segmentation from the rest of the image, the
threshold value is obtained by using a global thresholding
method called Otsu’s algorithm [7]. Otsu’s method selects the
threshold by minimizing the within-class variance of the two
groups of pixels separated by the thresholding operator. Here
we briefly explain the calculation of threshold value
For more technical details, see [8].The algorithm works as
follows:
 Compute the normalized histogram of the input image.
Denote the components of the histogram by , for
i = 40, 41,...... 100.
 Compute the cumulative sums, (k), for k = 40,
41,...... 100.
 Compute the cumulative means, m(k), for k = 40,
41,...... 100.
 Compute the global intensity mean, .
 Compute the between-class variance, (k), for k =
40, 41,...... 100.
 Obtain the Otsu threshold , as the value of k for
which (k) is maximum. If the maximum is not
unique, obtain by averaging the values of k
corresponding to the various maxima detected.
 Obtain the separability measure, at k = .
The obtained threshold value is then used to perform
segmentation in the next step.
C. Segmentation
The segmentation of the white matter from the rest of the
brain image can be simply achieved by performing the
binarization process based on the threshold value obtained
from the previous step. All the pixels with the intensity values
greater than the threshold value are made white and all the
pixels with the intensity values lesser than the threshold value
are made black, this process gives the structure of the white
matter distribution in various regions of the brain, the
binarization is performed as follows:
Let X be the pixel having intensity value ranging from 40
to 100, then let T be the threshold value obtained from
previous step, The pixel value greater than T is changed to 1
and the pixel value lesser than T is converted to 0. The
following algorithm is applied
Algorithm segmentation (input threshold, input histogram)
{
if histogram is above threshold
return 1
else
return 0
}
The segmentation result is shown in figure 6, the
segmented result is of the white matter from the brain is in a
binary image format.
ISSN: 2278 – 1323
International Journal of Advanced Research in Computer Engineering & Technology (IJARCET)
Volume 2, Issue 4, April 2013
1317
www.ijarcet.org
Fig. 6 Segmented result of the white matter from the rest of the brain
I. CONCLUSION
The proposed solution is a simple technique used for an
automatic segmentation of the white matter from the brain
fMRI images; the experiment was conducted on all 3 views of
single brain image with each view having 60 slides of data, the
experiment has shown an accurate extraction of the white
matter in all the three views. The segmented results are found
to be useful in the study of brain as well as with the diagnosis
of white matter related diseases.
REFERENCES
[1] Richard B. Buxton, “An Introduction to Functional Magnetic
Resonance Imaging: Principles and Techniques” Cambridge
University 2002.
[2] Richard Walker, Gabrielle N. Murphy, “Brain: Inner Workings of
the Gray Matter”, DK publishing 2002..
[3] Filley, “The Behavioral Neurology of White Matter: Second
Edition”, © 2012 Oxford University Press.
[4] İçer, S.; Latifoǧlu, F.; Coşkun, A.; Uzunoǧlu, S.M. “Determining
of brain gray and white matter regions in magnetic resonance
images”, 10.1109/BIYOMUT.2010.5479835 ©2010 IEEE.
[5] Christopher E. A. Zanaty, “Determination of Gray Matter (GM)
and White Matter (WM) Volume in Brain Magnetic Resonance
Images (MRI)” International Journal of Computer Applications
(0975 – 8887) Volume 45– No.3, May 2012
[6] Alasdair McAndrew, “An Introduction to Digital Image
Processing with MATLAB”, Notes for SCM2511 Image
Processing 1 Semester 1, 2004.
[7] Nobuyuki Otsu, “A threshold selection Method from Gray-Level
Histograms”, IEEE TRANSACTIONS ON SYSTREMS, MAN,
AND CYBERNETICS, VOL. SMC-9, NO. 1, JANUARY 1979.
[8] Rafael C. Gonzalez, Richard E. Woods, “ Digital Image
Processing”, Third Edition, published by Pearson Education,
Inc, publishing as Prentice Hall, copyright © 2008.

More Related Content

What's hot

Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...
Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...
Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...CSCJournals
 
Multistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s DiseaseMultistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s DiseaseIJLT EMAS
 
IRJET- Acute Ischemic Stroke Detection and Classification
IRJET-  	  Acute Ischemic Stroke Detection and ClassificationIRJET-  	  Acute Ischemic Stroke Detection and Classification
IRJET- Acute Ischemic Stroke Detection and ClassificationIRJET Journal
 
A robust technique of brain mri classification using color features and k nea...
A robust technique of brain mri classification using color features and k nea...A robust technique of brain mri classification using color features and k nea...
A robust technique of brain mri classification using color features and k nea...Salam Shah
 
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...Journal For Research
 
IRJET-A Review on Brain Tumor Detection using BFCFCM Algorithm
IRJET-A Review on Brain Tumor Detection using BFCFCM   AlgorithmIRJET-A Review on Brain Tumor Detection using BFCFCM   Algorithm
IRJET-A Review on Brain Tumor Detection using BFCFCM AlgorithmIRJET Journal
 
IRJET- Brain Tumor Segmentation and Detection using F-Transform
IRJET- Brain Tumor Segmentation and Detection using F-TransformIRJET- Brain Tumor Segmentation and Detection using F-Transform
IRJET- Brain Tumor Segmentation and Detection using F-TransformIRJET Journal
 
D232430
D232430D232430
D232430irjes
 
Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...
Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...
Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...IJECEIAES
 
IRJET- Image Processing for Brain Tumor Segmentation and Classification
IRJET-  	  Image Processing for Brain Tumor Segmentation and ClassificationIRJET-  	  Image Processing for Brain Tumor Segmentation and Classification
IRJET- Image Processing for Brain Tumor Segmentation and ClassificationIRJET Journal
 
Haemorrhage Detection and Classification: A Review
Haemorrhage Detection and Classification: A ReviewHaemorrhage Detection and Classification: A Review
Haemorrhage Detection and Classification: A ReviewIJERA Editor
 
Brain tumor classification using artificial neural network on mri images
Brain tumor classification using artificial neural network on mri imagesBrain tumor classification using artificial neural network on mri images
Brain tumor classification using artificial neural network on mri imageseSAT Journals
 
Paper id 25201482
Paper id 25201482Paper id 25201482
Paper id 25201482IJRAT
 
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...ijbbjournal
 
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
 

What's hot (19)

Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...
Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...
Fully Automatic Method for 3D T1-Weighted Brain Magnetic Resonance Images Seg...
 
Multistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s DiseaseMultistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s Disease
 
C1103041623
C1103041623C1103041623
C1103041623
 
IRJET- Acute Ischemic Stroke Detection and Classification
IRJET-  	  Acute Ischemic Stroke Detection and ClassificationIRJET-  	  Acute Ischemic Stroke Detection and Classification
IRJET- Acute Ischemic Stroke Detection and Classification
 
A robust technique of brain mri classification using color features and k nea...
A robust technique of brain mri classification using color features and k nea...A robust technique of brain mri classification using color features and k nea...
A robust technique of brain mri classification using color features and k nea...
 
E0413024026
E0413024026E0413024026
E0413024026
 
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
 
MH_Report
MH_ReportMH_Report
MH_Report
 
IRJET-A Review on Brain Tumor Detection using BFCFCM Algorithm
IRJET-A Review on Brain Tumor Detection using BFCFCM   AlgorithmIRJET-A Review on Brain Tumor Detection using BFCFCM   Algorithm
IRJET-A Review on Brain Tumor Detection using BFCFCM Algorithm
 
IRJET- Brain Tumor Segmentation and Detection using F-Transform
IRJET- Brain Tumor Segmentation and Detection using F-TransformIRJET- Brain Tumor Segmentation and Detection using F-Transform
IRJET- Brain Tumor Segmentation and Detection using F-Transform
 
D232430
D232430D232430
D232430
 
Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...
Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...
Hybrid Multilevel Thresholding and Improved Harmony Search Algorithm for Segm...
 
Sub1528
Sub1528Sub1528
Sub1528
 
IRJET- Image Processing for Brain Tumor Segmentation and Classification
IRJET-  	  Image Processing for Brain Tumor Segmentation and ClassificationIRJET-  	  Image Processing for Brain Tumor Segmentation and Classification
IRJET- Image Processing for Brain Tumor Segmentation and Classification
 
Haemorrhage Detection and Classification: A Review
Haemorrhage Detection and Classification: A ReviewHaemorrhage Detection and Classification: A Review
Haemorrhage Detection and Classification: A Review
 
Brain tumor classification using artificial neural network on mri images
Brain tumor classification using artificial neural network on mri imagesBrain tumor classification using artificial neural network on mri images
Brain tumor classification using artificial neural network on mri images
 
Paper id 25201482
Paper id 25201482Paper id 25201482
Paper id 25201482
 
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
 
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...
 

Viewers also liked

Promotion Group open mozaik
Promotion Group open mozaikPromotion Group open mozaik
Promotion Group open mozaikPavel Sidorenco
 
Tienganhtreem summerschool-dondutuyen-giaovien-updated2013
Tienganhtreem summerschool-dondutuyen-giaovien-updated2013Tienganhtreem summerschool-dondutuyen-giaovien-updated2013
Tienganhtreem summerschool-dondutuyen-giaovien-updated2013tienganhtreemhn
 
Volume 2-issue-6-2091-2094
Volume 2-issue-6-2091-2094Volume 2-issue-6-2091-2094
Volume 2-issue-6-2091-2094Editor IJARCET
 
Volume 2-issue-6-1955-1959
Volume 2-issue-6-1955-1959Volume 2-issue-6-1955-1959
Volume 2-issue-6-1955-1959Editor IJARCET
 
Annisa ulfah dan rusida sari xii ips 2
Annisa ulfah dan rusida sari xii ips 2Annisa ulfah dan rusida sari xii ips 2
Annisa ulfah dan rusida sari xii ips 2Paarief Udin
 
Ghazali hadi rais xii ips 1
Ghazali hadi rais xii ips 1Ghazali hadi rais xii ips 1
Ghazali hadi rais xii ips 1Paarief Udin
 
Anitya nor azizah xii ipa 2
Anitya nor azizah xii ipa 2Anitya nor azizah xii ipa 2
Anitya nor azizah xii ipa 2Paarief Udin
 
Tieng anh tre em - Summer School - Don du tuyen giao vu
Tieng anh tre em - Summer School - Don du tuyen giao vuTieng anh tre em - Summer School - Don du tuyen giao vu
Tieng anh tre em - Summer School - Don du tuyen giao vutienganhtreemhn
 
Ijarcet vol-2-issue-7-2208-2216
Ijarcet vol-2-issue-7-2208-2216Ijarcet vol-2-issue-7-2208-2216
Ijarcet vol-2-issue-7-2208-2216Editor IJARCET
 
Ijarcet vol-2-issue-7-2223-2229
Ijarcet vol-2-issue-7-2223-2229Ijarcet vol-2-issue-7-2223-2229
Ijarcet vol-2-issue-7-2223-2229Editor IJARCET
 
Ijarcet vol-2-issue-7-2374-2377
Ijarcet vol-2-issue-7-2374-2377Ijarcet vol-2-issue-7-2374-2377
Ijarcet vol-2-issue-7-2374-2377Editor IJARCET
 
Volume 2-issue-6-1950-1954
Volume 2-issue-6-1950-1954Volume 2-issue-6-1950-1954
Volume 2-issue-6-1950-1954Editor IJARCET
 
pdf_rui_rosas
pdf_rui_rosaspdf_rui_rosas
pdf_rui_rosasRui Rosas
 

Viewers also liked (18)

Erynie Ania
Erynie AniaErynie Ania
Erynie Ania
 
Promotion Group open mozaik
Promotion Group open mozaikPromotion Group open mozaik
Promotion Group open mozaik
 
1829 1833
1829 18331829 1833
1829 1833
 
Tienganhtreem summerschool-dondutuyen-giaovien-updated2013
Tienganhtreem summerschool-dondutuyen-giaovien-updated2013Tienganhtreem summerschool-dondutuyen-giaovien-updated2013
Tienganhtreem summerschool-dondutuyen-giaovien-updated2013
 
Volume 2-issue-6-2091-2094
Volume 2-issue-6-2091-2094Volume 2-issue-6-2091-2094
Volume 2-issue-6-2091-2094
 
Volume 2-issue-6-1955-1959
Volume 2-issue-6-1955-1959Volume 2-issue-6-1955-1959
Volume 2-issue-6-1955-1959
 
Paso a paso
Paso a pasoPaso a paso
Paso a paso
 
12 columna vertebral
12 columna vertebral12 columna vertebral
12 columna vertebral
 
1816 1819
1816 18191816 1819
1816 1819
 
Annisa ulfah dan rusida sari xii ips 2
Annisa ulfah dan rusida sari xii ips 2Annisa ulfah dan rusida sari xii ips 2
Annisa ulfah dan rusida sari xii ips 2
 
Ghazali hadi rais xii ips 1
Ghazali hadi rais xii ips 1Ghazali hadi rais xii ips 1
Ghazali hadi rais xii ips 1
 
Anitya nor azizah xii ipa 2
Anitya nor azizah xii ipa 2Anitya nor azizah xii ipa 2
Anitya nor azizah xii ipa 2
 
Tieng anh tre em - Summer School - Don du tuyen giao vu
Tieng anh tre em - Summer School - Don du tuyen giao vuTieng anh tre em - Summer School - Don du tuyen giao vu
Tieng anh tre em - Summer School - Don du tuyen giao vu
 
Ijarcet vol-2-issue-7-2208-2216
Ijarcet vol-2-issue-7-2208-2216Ijarcet vol-2-issue-7-2208-2216
Ijarcet vol-2-issue-7-2208-2216
 
Ijarcet vol-2-issue-7-2223-2229
Ijarcet vol-2-issue-7-2223-2229Ijarcet vol-2-issue-7-2223-2229
Ijarcet vol-2-issue-7-2223-2229
 
Ijarcet vol-2-issue-7-2374-2377
Ijarcet vol-2-issue-7-2374-2377Ijarcet vol-2-issue-7-2374-2377
Ijarcet vol-2-issue-7-2374-2377
 
Volume 2-issue-6-1950-1954
Volume 2-issue-6-1950-1954Volume 2-issue-6-1950-1954
Volume 2-issue-6-1950-1954
 
pdf_rui_rosas
pdf_rui_rosaspdf_rui_rosas
pdf_rui_rosas
 

Similar to Ijarcet vol-2-issue-4-1314-1317

Essay On Image Processing
Essay On Image ProcessingEssay On Image Processing
Essay On Image ProcessingSusan Kennedy
 
IRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep LearningIRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep LearningIRJET Journal
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...sipij
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...sipij
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)irjes
 
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
 
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 detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...eSAT Journals
 
Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...eSAT Publishing House
 
Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303
Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303
Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303Deenadayalan Thanigaimalai
 
Functional magnetic resonance imaging-based brain decoding with visual semant...
Functional magnetic resonance imaging-based brain decoding with visual semant...Functional magnetic resonance imaging-based brain decoding with visual semant...
Functional magnetic resonance imaging-based brain decoding with visual semant...IJECEIAES
 
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
 
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGESAN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGEScscpconf
 
Design and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using imageDesign and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using imageIAEME Publication
 

Similar to Ijarcet vol-2-issue-4-1314-1317 (20)

Essay On Image Processing
Essay On Image ProcessingEssay On Image Processing
Essay On Image Processing
 
IRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep LearningIRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep Learning
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
Jr3616801683
Jr3616801683Jr3616801683
Jr3616801683
 
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
 
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 detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...
 
Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tumor detection and segmentation using watershed segmentation and morph...
 
49 299-305
49 299-30549 299-305
49 299-305
 
Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303
Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303
Early detection-of-alzheimers-disease-using-image-processing-ijertv8 is050303
 
Functional magnetic resonance imaging-based brain decoding with visual semant...
Functional magnetic resonance imaging-based brain decoding with visual semant...Functional magnetic resonance imaging-based brain decoding with visual semant...
Functional magnetic resonance imaging-based brain decoding with visual semant...
 
Fuzzy c-means
Fuzzy c-meansFuzzy c-means
Fuzzy c-means
 
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...
 
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGESAN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
 
call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...
 
Design and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using imageDesign and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using image
 

More from Editor IJARCET

Electrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationElectrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationEditor IJARCET
 
Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Editor IJARCET
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Editor IJARCET
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Editor IJARCET
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Editor IJARCET
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Editor IJARCET
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Editor IJARCET
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Editor IJARCET
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Editor IJARCET
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Editor IJARCET
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Editor IJARCET
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Editor IJARCET
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Editor IJARCET
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Editor IJARCET
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Editor IJARCET
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Editor IJARCET
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Editor IJARCET
 
Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Editor IJARCET
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Editor IJARCET
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Editor IJARCET
 

More from Editor IJARCET (20)

Electrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturizationElectrically small antennas: The art of miniaturization
Electrically small antennas: The art of miniaturization
 
Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207Volume 2-issue-6-2205-2207
Volume 2-issue-6-2205-2207
 
Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199Volume 2-issue-6-2195-2199
Volume 2-issue-6-2195-2199
 
Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204Volume 2-issue-6-2200-2204
Volume 2-issue-6-2200-2204
 
Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194Volume 2-issue-6-2190-2194
Volume 2-issue-6-2190-2194
 
Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189Volume 2-issue-6-2186-2189
Volume 2-issue-6-2186-2189
 
Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185Volume 2-issue-6-2177-2185
Volume 2-issue-6-2177-2185
 
Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176Volume 2-issue-6-2173-2176
Volume 2-issue-6-2173-2176
 
Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172Volume 2-issue-6-2165-2172
Volume 2-issue-6-2165-2172
 
Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164Volume 2-issue-6-2159-2164
Volume 2-issue-6-2159-2164
 
Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158Volume 2-issue-6-2155-2158
Volume 2-issue-6-2155-2158
 
Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154Volume 2-issue-6-2148-2154
Volume 2-issue-6-2148-2154
 
Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147Volume 2-issue-6-2143-2147
Volume 2-issue-6-2143-2147
 
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124
 
Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142Volume 2-issue-6-2139-2142
Volume 2-issue-6-2139-2142
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138
 
Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129Volume 2-issue-6-2125-2129
Volume 2-issue-6-2125-2129
 
Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118Volume 2-issue-6-2114-2118
Volume 2-issue-6-2114-2118
 
Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113Volume 2-issue-6-2108-2113
Volume 2-issue-6-2108-2113
 
Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107Volume 2-issue-6-2102-2107
Volume 2-issue-6-2102-2107
 

Recently uploaded

Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort ServicePremium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Servicevidya singh
 
Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...
Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...
Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...vidya singh
 
Chandrapur Call girls 8617370543 Provides all area service COD available
Chandrapur Call girls 8617370543 Provides all area service COD availableChandrapur Call girls 8617370543 Provides all area service COD available
Chandrapur Call girls 8617370543 Provides all area service COD availableDipal Arora
 
Russian Escorts Girls Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls Delhi
Russian Escorts Girls  Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls DelhiRussian Escorts Girls  Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls Delhi
Russian Escorts Girls Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls DelhiAlinaDevecerski
 
Call Girls Kochi Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kochi Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Kochi Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kochi Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Lucknow Call girls - 8800925952 - 24x7 service with hotel room
Lucknow Call girls - 8800925952 - 24x7 service with hotel roomLucknow Call girls - 8800925952 - 24x7 service with hotel room
Lucknow Call girls - 8800925952 - 24x7 service with hotel roomdiscovermytutordmt
 
The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...
The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...
The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...chandars293
 
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Dipal Arora
 
Call Girls Tirupati Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Tirupati Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...
(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...
(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...Taniya Sharma
 
Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...
Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...
Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...Dipal Arora
 
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...hotbabesbook
 
Call Girls Mumbai Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Mumbai Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Mumbai Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Mumbai Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...astropune
 
Call Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls Jaipur
Call Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls JaipurCall Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls Jaipur
Call Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls Jaipurparulsinha
 
VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...
VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...
VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...Garima Khatri
 
Call Girls Bareilly Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Bareilly Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Bareilly Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Bareilly Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
VIP Call Girls Indore Kirti 💚😋 9256729539 🚀 Indore Escorts
VIP Call Girls Indore Kirti 💚😋  9256729539 🚀 Indore EscortsVIP Call Girls Indore Kirti 💚😋  9256729539 🚀 Indore Escorts
VIP Call Girls Indore Kirti 💚😋 9256729539 🚀 Indore Escortsaditipandeya
 
Call Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 

Recently uploaded (20)

Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort ServicePremium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
Premium Call Girls Cottonpet Whatsapp 7001035870 Independent Escort Service
 
Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...
Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...
Manyata Tech Park ( Call Girls ) Bangalore ✔ 6297143586 ✔ Hot Model With Sexy...
 
Chandrapur Call girls 8617370543 Provides all area service COD available
Chandrapur Call girls 8617370543 Provides all area service COD availableChandrapur Call girls 8617370543 Provides all area service COD available
Chandrapur Call girls 8617370543 Provides all area service COD available
 
Russian Escorts Girls Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls Delhi
Russian Escorts Girls  Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls DelhiRussian Escorts Girls  Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls Delhi
Russian Escorts Girls Nehru Place ZINATHI 🔝9711199012 ☪ 24/7 Call Girls Delhi
 
Call Girls Kochi Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kochi Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Kochi Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kochi Just Call 9907093804 Top Class Call Girl Service Available
 
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Cuttack Just Call 9907093804 Top Class Call Girl Service Available
 
Lucknow Call girls - 8800925952 - 24x7 service with hotel room
Lucknow Call girls - 8800925952 - 24x7 service with hotel roomLucknow Call girls - 8800925952 - 24x7 service with hotel room
Lucknow Call girls - 8800925952 - 24x7 service with hotel room
 
The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...
The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...
The Most Attractive Hyderabad Call Girls Kothapet 𖠋 6297143586 𖠋 Will You Mis...
 
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
 
Call Girls Tirupati Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Tirupati Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Tirupati Just Call 9907093804 Top Class Call Girl Service Available
 
(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...
(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...
(👑VVIP ISHAAN ) Russian Call Girls Service Navi Mumbai🖕9920874524🖕Independent...
 
Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...
Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...
Call Girls Visakhapatnam Just Call 9907093804 Top Class Call Girl Service Ava...
 
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
 
Call Girls Mumbai Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Mumbai Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Mumbai Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Mumbai Just Call 9907093804 Top Class Call Girl Service Available
 
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
Best Rate (Hyderabad) Call Girls Jahanuma ⟟ 8250192130 ⟟ High Class Call Girl...
 
Call Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls Jaipur
Call Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls JaipurCall Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls Jaipur
Call Girls Service Jaipur Grishma WhatsApp ❤8445551418 VIP Call Girls Jaipur
 
VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...
VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...
VIP Mumbai Call Girls Hiranandani Gardens Just Call 9920874524 with A/C Room ...
 
Call Girls Bareilly Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Bareilly Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Bareilly Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Bareilly Just Call 9907093804 Top Class Call Girl Service Available
 
VIP Call Girls Indore Kirti 💚😋 9256729539 🚀 Indore Escorts
VIP Call Girls Indore Kirti 💚😋  9256729539 🚀 Indore EscortsVIP Call Girls Indore Kirti 💚😋  9256729539 🚀 Indore Escorts
VIP Call Girls Indore Kirti 💚😋 9256729539 🚀 Indore Escorts
 
Call Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Jabalpur Just Call 9907093804 Top Class Call Girl Service Available
 

Ijarcet vol-2-issue-4-1314-1317

  • 1. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, Issue 4, April 2013 All Rights Reserved © 2013 IJARCET 1314  Abstract— Segmentation of the white matter from the brain fMRI images for the study of brain activities and for the diagnosis for various brain related diseases caused by the changes and damages to regions of the brain continues on a manual time consuming segmentation technique. We present a solution for automatic segmentation of the brain fMRI images; the solution contains three steps which are pre-processing the raw images, threshold estimation using an Otsu’s algorithm and finally performing the segmentation by binarization of the images based on the calculated threshold value. Index Terms— brain, fMRI, grey matter, threshold, segmentation, white matter. I. INTRODUCTION The fMRI stands for functional magnetic resonance imaging is an MRI procedure that measures brain activity by detecting associated changes in blood flow [1], unlike MRI images which gives only the structural aspects of the brain fMRI provides both the structural and the functional aspects of the brain. Hence this feature allows the physicians to study the functionalities of the brain as well as to diagnose the brain related diseases. There are three parts in fMRI projections of which are grey matter [2] formed basically by neurons, white matter[3] formed by axon extremities with mylelins, and cerebrospinal fluid, changes and damages in these regions can cause various diseases. The white matter segmentation from the brain images plays a major role in the study of brain activities, based on the distribution of the white matter in the brain it is possible to determine which part of the brain is more active while performing certain activities, for example brain activity study involves determining the structure and the distribution of the white matter when a person is happy, sad, watching TV, walking or performing other day to day activities etc. the white matter segmentation also enables in the diagnosis of the white matter diseases[4], MS(multiple sclerosis) and demyelinated diseases, minor cardiovascular diseases, neurologic damages, and blindness can be listed. II. LITERATURE SURVEY The fMRI images can be taken in three views namely coronel, axial and sagittal. Each of these views typically contains 60 to 70 image slices. The current method of segmentation of the white matter from the brain fMRI images is done using a manual segmentation (hand segmentation), this method has the following disadvantages:  Time consumption: It takes around 48 to 72 hours to manually segment the white matter from the gray matter of the brain fMRI images.  Extra Labor: To manually segment the white matter from the gray matter of the brain fMRI images it requires a skilled labor with good training and experience  Lots of paper work: As the process of segmentation is non reproducible. The entire process has to be repeated if the image is slightly changed or if there are minor errors in the process, hence requires a lot of paper work. In order to analyze anatomical structure in 3D volume data, physicians need reliable segmentation methods. One of the most frequently addressed problems is the segmentation of MRI images of the human brain into gray matter and white matter. In recent years several methods for this have been made available to the public, e.g. Freesurfer, slicer and SPM. All those methods rely on a registration of the analyzed imaged with pre-computed anatomical atlas providing a priori information about spatial distribution of the tissue types. The anatomical knowledge incorporated into the atlas allows high quality segmentation, even when structures are hard to distinguish visually. However, registration with an atlas is time consuming and might not find a globally optimal solution or even fail completely in the case of strong anatomical anomalies. In those cases physicians have to fall back and prone to inter-rater discrepancies. In 2005 and 2006, a new atlas free brain segmentation method was shown to able to deliver results of similar quality to those produced by the established atlas based SPM method even in the case of images without anatomical anomalies. The method builds upon the 3D-CSC, a general segmentation Segmentation of the White Matter from the Brain fMRI Images Kaushik K.S1 , Rakesh Kumar K.N2 , Suresha D3 1 Research scholar, Canara Engineering College, Mangalore 2 Research scholar, Canara Engineering College, Mangalore 3 Assistant Professor, Canara Engineering College, Mangalore
  • 2. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, Issue 4, April 2013 1315 www.ijarcet.org voxel images which partitions 3D images into gray value similar, spatially connected regions. In 2007, several improvements were introduced to 3D-CSC based segmentation of TI weighted MRI images into white matter, gray matter and non brain which further enhance both reliability and quality while pertaining the computational complexity of the method. As no time consuming registration step is needed, the method is not only reliable, but also very fast I. PROPOSED SOLUTION The fMRI brain images are captured using a fMRI scanner will be in the form of Digital Imaging and Communications in Medicine (DICOM) format, 60 image slices of a coronel view of the brain is used in our experiment, figure 1 shows a centre slice of typical fMRI brain image in a coronel view . Fig. 1 A Brain fMRI image in coronel view showing white matter and grey matter The main objective is to extract the white matter from the rest of the image so that end users can analyze the segmented result, the overall process of achieving this result and the flow of data is shown in the figure 2. As shown in the figure 2 the fMRI DICOM images are obtained from the fMRI scanner will be stored in the Medical information centre database, these data are obtained by the system to perform white matter segmentation which includes three steps preprocessing, threshold value estimation and finally performing the segmentation procedure based on the previously calculated threshold value, these three steps are in detail in the following sections. The segmented white matter binary image will be stored in the Medical information centre database and finally the segmented white matter is analyzed and examined by the physicians. Fig. 2 A Brain analysis system architecture A. Preprocessing The fMRI images should be preprocessed to remove the noise before performing the segmentation operation. Figure 3 shows the result of the segmentation process without performing the preprocessing step. Fig. 3 Segmented result without preprocessing As shown in figure 3 the segmented result contains noise in terms of background colour, skull bone, hard tissues, cerebrospinal fluid and air. The preprocessing step involves using a histogram based double thresholding technique to remove the noise particles and to obtain the only the soft tissue structure of the brain containing white matter and grey matter. Figure 4 shows the histogram distribution for the image in figure 1, pixel count is taken in y-axis and the intensity is taken in the x-axis, the pixels that are bounded by the red rectangular box forms the soft brain tissues and the rest of the pixels outside the rectangular box are considered as noise and are removed by using a double thresholding technique [6].
  • 3. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, Issue 4, April 2013 All Rights Reserved © 2013 IJARCET 1316 Fig.4 Histogram of the fMRI image showing pixels which forms the soft tissue of the brain Here we make use of two threshold values threshold11 and threshold2 and then apply a thresholding operation as: A pixel becomes black if its value is lesser than threshold1 or greater than threshold2, and will remain as it if the pixel value is found to be in-between threshold1 and threshold2, for example let X be a pixel value whose value ranges from 0 to 255, then the following algorithm is applied Algorithm preprocessing (input threshold1, input threshold2, input histogram) { if histogram is above threshold1 if histogram is below threshold2 return 1 else return 0 } In our experiment we have taken threshold1 as 40 and threshold2 as 100, the pixel values less than 40 are found to be a noise in the form of background colour, CSF and air, the pixel values greater than 100 are found to be a noise in the form of skull bone and hard tissue, the result after performing the preprocessing step by applying double thresholding is shown in figure 5. Fig. 5 Segmented result with preprocessing B. Threshold estimation After obtaining the preprocessed data the next process involves the calculation of threshold value to perform the white matter segmentation from the rest of the image, the threshold value is obtained by using a global thresholding method called Otsu’s algorithm [7]. Otsu’s method selects the threshold by minimizing the within-class variance of the two groups of pixels separated by the thresholding operator. Here we briefly explain the calculation of threshold value For more technical details, see [8].The algorithm works as follows:  Compute the normalized histogram of the input image. Denote the components of the histogram by , for i = 40, 41,...... 100.  Compute the cumulative sums, (k), for k = 40, 41,...... 100.  Compute the cumulative means, m(k), for k = 40, 41,...... 100.  Compute the global intensity mean, .  Compute the between-class variance, (k), for k = 40, 41,...... 100.  Obtain the Otsu threshold , as the value of k for which (k) is maximum. If the maximum is not unique, obtain by averaging the values of k corresponding to the various maxima detected.  Obtain the separability measure, at k = . The obtained threshold value is then used to perform segmentation in the next step. C. Segmentation The segmentation of the white matter from the rest of the brain image can be simply achieved by performing the binarization process based on the threshold value obtained from the previous step. All the pixels with the intensity values greater than the threshold value are made white and all the pixels with the intensity values lesser than the threshold value are made black, this process gives the structure of the white matter distribution in various regions of the brain, the binarization is performed as follows: Let X be the pixel having intensity value ranging from 40 to 100, then let T be the threshold value obtained from previous step, The pixel value greater than T is changed to 1 and the pixel value lesser than T is converted to 0. The following algorithm is applied Algorithm segmentation (input threshold, input histogram) { if histogram is above threshold return 1 else return 0 } The segmentation result is shown in figure 6, the segmented result is of the white matter from the brain is in a binary image format.
  • 4. ISSN: 2278 – 1323 International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 2, Issue 4, April 2013 1317 www.ijarcet.org Fig. 6 Segmented result of the white matter from the rest of the brain I. CONCLUSION The proposed solution is a simple technique used for an automatic segmentation of the white matter from the brain fMRI images; the experiment was conducted on all 3 views of single brain image with each view having 60 slides of data, the experiment has shown an accurate extraction of the white matter in all the three views. The segmented results are found to be useful in the study of brain as well as with the diagnosis of white matter related diseases. REFERENCES [1] Richard B. Buxton, “An Introduction to Functional Magnetic Resonance Imaging: Principles and Techniques” Cambridge University 2002. [2] Richard Walker, Gabrielle N. Murphy, “Brain: Inner Workings of the Gray Matter”, DK publishing 2002.. [3] Filley, “The Behavioral Neurology of White Matter: Second Edition”, © 2012 Oxford University Press. [4] İçer, S.; Latifoǧlu, F.; Coşkun, A.; Uzunoǧlu, S.M. “Determining of brain gray and white matter regions in magnetic resonance images”, 10.1109/BIYOMUT.2010.5479835 ©2010 IEEE. [5] Christopher E. A. Zanaty, “Determination of Gray Matter (GM) and White Matter (WM) Volume in Brain Magnetic Resonance Images (MRI)” International Journal of Computer Applications (0975 – 8887) Volume 45– No.3, May 2012 [6] Alasdair McAndrew, “An Introduction to Digital Image Processing with MATLAB”, Notes for SCM2511 Image Processing 1 Semester 1, 2004. [7] Nobuyuki Otsu, “A threshold selection Method from Gray-Level Histograms”, IEEE TRANSACTIONS ON SYSTREMS, MAN, AND CYBERNETICS, VOL. SMC-9, NO. 1, JANUARY 1979. [8] Rafael C. Gonzalez, Richard E. Woods, “ Digital Image Processing”, Third Edition, published by Pearson Education, Inc, publishing as Prentice Hall, copyright © 2008.