SlideShare uma empresa Scribd logo
1 de 4
Baixar para ler offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 720
A COMPARISON OF IMAGE SEGMENTATION TECHNIQUES, OTSU
AND WATERSHED FOR X-RAY IMAGES
P. Manju Bhargavi1
, V. Sai Kiran Mayee2
, T. Manaswini3
, S. Manvitha4
1
Department of Biomedical Engineering, GRIET, Hyderabad
2
Department of Biomedical Engineering, GRIET, Hyderabad
3
Department of Biomedical Engineering, GRIET, Hyderabad
4
Department of Biomedical Engineering, GRIET, Hyderabad
Abstract
The most dangerous and rapidly spreading disease in the world is Tuberculosis. In the investigating for suspected tuberculosis
(TB), chest radiography is the only key techniques of diagnosis based on the medical imaging So, Computer aided diagnosis
(CAD) has been popular and many researchers are interested in this research areas and different approaches have been proposed
for the TB detection. Image segmentation plays a great importance in most medical imaging, by extracting the anatomical
structures from images. There exist many image segmentation techniques in the literature, each of them having their own
advantages and disadvantages. The aim of X-ray segmentation is to subdivide the image in different portions, so that it can help
during the study the structure of the bone, for the detection of disorder. The goal of this paper is to review the most important
image segmentation methods starting from a data base composed by real X-ray images.
Keywords— chest radiography, computer aided diagnosis, image segmentation, anatomical structures, real X-rays.
---------------------------------------------------------------------***--------------------------------------------------------------------
1. INTRODUCTION
Tuberculosis (TB) is an infectious disease over the world
population. It is caused by bacteria which is known as
Mycobacterium tuberculosis and mostly affected to the
lungs of the human beings. In order to detect Tuberculosis,
we have set of steps involved [1].
A CAD system usually applies a series of pre-processing
steps to an input image. The pre-processing step is
performed to enhance the image quality so that objects of
interest become more evident. The quality of the pre-
processing step strongly affects the performance of the
subsequent processing steps. The pre-processing steps for
X-ray screening are contrast enhancement and lung
boundary detection. The software implementation of these
steps is shown in this paper.
When analyzing objects in images, it is necessary to
distinguish the objects of interest from the background. This
task can be realized through segmentation. Image
segmentation is one of the most challenging issues in image
processing domain [2] and it has been an active research
area in the last years. Through segmentation we aim to
fragment the image in a series of regions, based on the
attributes of the image that are approximately constant in
each region, but differ significantly from a region to another.
Segmentation aims to extract useful information from
images in medical imaging applications as well Medical
images segmentation [2] has also found applications in
studying the anatomical structure, fractures localizations or
tumors, diagnosis and treatment planning, computer-
integrated surgery, tissue classification, or tumor volume
estimation. They are also affected by noise, artifacts or
spatial aliasing so that the boundaries of the regions of
interest to become indistinct. X-rays are having various
orientations, resolutions, and luminous intensities,
depending on the X-ray equipment, which influences the
quality of the segmentation result [3]. Unlike many other
medical imaging modalities, bone regions often overlap with
other organs or bones and the joints between bones in X-
rays. Several segmentation techniques have been developed
and reported in the literature. However, a perfect method,
which is universally applicable to all kind of images, does
not exist. This paper focuses on the comparison of several
already existing image segmentation techniques in the case
of X-ray images.
2. WORK
2.1 Pre-Processing:
The objective of the image pre-processing is not only to
improve the image quality but also to reduce the undesired
portion from the background of the images. Most pre-
processing methods apply the intensity value of
neighborhood pixel for obtaining the brightness intensity
value of the input images. The reasons for the image pre-
processing phase are:
i. In order to meet the requirements of the physician
for the image quality improvement.
ii. Edge detection –To detect the edges, Sobel
operator is discussed in this paper.
iii. Contrast enhancement - To enhance the contrast at
the region of interest, histogram equalization is
performed on the image. Histogram analysis
increases the contrast in low-contrast regions by
spreading out the most frequent intensity levels.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 721
iv. Preparing the data optimally for post-processing
steps. The process is described in figure 1.
Fig 1: Flowchart of pro-processing step
Fig 2: Output of pre-processing step
In figure 2, the first image is the input which is a gray image
converted from RGB image. The second is histogram
equalized image and the last is the edge detected image
using a Sobel operator.
2.2 Segmentation Techniques
Image segmentation is very important step to extract good
quality features for classification. The objective of image
segmentation is to cluster the pixels having same intensity
value from the whole image regions, separating regions of
desired part of the original image, hiding the undesired
region. Image segmentation step is applied in many image
pre-processing areas such as editing, or query from image
database, object occlusion, recognition of object, estimation
of the boundary and image compression.
In general, algorithms for image segmentation are based on
two fundamental properties of intensity values which are
discontinuity and similarity. Discontinuity property does the
partition of the image based on the changes in sharp
intensity value. Similarity property does the partition of the
image into regions that are alike to the specified criteria.
In chest radiographs, segmentation process must be done
accurately for the medical image analysis task which is
especially for computer-aided diagnosis. For example, lung
nodules are determined according to the different
measurements of nodules size.
Different kinds of approaches have been discussed in the
lung segmentation step. Various approaches for lung
segmentation are presented which includes:
2.2.1 Watershed Segmentation
Watershed segmentation (watershed transform) is a region-
based method [4] under the classical technique of
segmentation. This method is based on the grayscale
mathematical morphology [5] and it is used for multi
component images. Intuitively, the watershed algorithm can
be thought of as a landscape that is flooded by water. At
each point, the height of the landscape represents the pixel's
intensity. The watershed transform computes the image
regions which represent the basins and region boundaries
(the ridgelines). The image gradient is used as input of the
transform, such that the basin limits are situated at high
gradient points. The steps involved in this method are shown
in figure 3.
A Watershed segmentation process starts at some regional
minima Mi value which locates the lowest points of the area
into where the water flows. By measuring appropriate
distance, the area is separated into regions Ωi which has
growth from the corresponding minimum Mi by adding to
Ωi, repeatedly, unlabeled points on the outer boundary of Ωi.
A point is added to region Ωi If its distance from the region
is smaller than those from other regions. The process is
repeated until no remaining unlabeled points are those of the
watershed line. In implementation, in order to obtain a thin-
watershed line, a point is added to the region Ωi even when
its distance from the region equals those from some other
regions. Hence, there is no point that belongs to the
watershed line.
This type of segmentation method is very simple and
intuitive and has good properties, which make it useful for
many image segmentation applications. However, it has
other disadvantages such as: over-segmentation and poor at
detecting thin structures and structures with low signal-to-
noise ratio.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 722
Fig 3: Flowchart of Watershed segmentation
Fig 4: Output of reconstruction technique
In figure 4, the first image is opening and closing technique
by reconstruction and the next image is the regional maxima
of opening and closing technique by reconstruction.
Fig 5: Output of thresholding technique
In figure 5, the first image is by applying a threshold to the
opening-closing reconstruction technique and the next
image is the watershed ridge line.
Fig 6: Output of watershed segmentation
In figure 6, markers and object boundaries are superimposed
on an original image and the last image is the coloured
watershed label matrix.
2.2.2 Otsu Thresholding
Thresholding is one of the most simple segmentation
techniques [2], involves thresholding the intensity of the
image. In the case of global thresholding, only one threshold
value is selected for the entire image. Global methods are
based on the fact that the image has a bimodal histogram.
The region of interest can be separated from the background
by comparing the intensity of each pixel in the image with a
threshold. Some pixels, whose intensity values are greater
than the threshold, are classified as being part of group A -
object of interest (with an intensity value of 1), and the rest
of the pixels as being part of group B-background (with an
intensity value of 0). The following assumptions are applied
in Otsu method:
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 723
i. The image has a bimodal histogram.
ii. Neither use of spatial coherence nor any other
object structure.
iii. Intensity values are stationary statistics but they can
be changed to locally adaptive.
iv. Intensities are implicitly uniform illumination thus
the brightness behavior of the bimodal arises from
the object appearance differences only.
Global methods are simple and fast, but are suitable only for
images with bimodal intensity distribution (probability
distribution with two different modes). Another factor that
affects the performance of thresholding is the unequal
illumination in the image. In addition, global methods are
not useful for multichannel images, since only two classes
are generated. Figure 7 shows the procedure involved in
otsu thresholding.
Fig 7: Flowchart of Otsu thresholding technique
Fig 8: Output of Otsu thresholding technique
In figure 8, the first image is the original image that is given
as the input which is actually pre-processed and the next
three images are obtained by setting different threshold
values to the input image.
3. CONCLUSION
We described a series of approaches that have been
published in the recent literature, concerning medical
images segmentation. We have provided an overview
regarding the implementation of each segmentation method,
highlighting the advantages and disadvantages of each
method. The evaluation of these segmentation techniques
can be done, in terms of: performance, computational
complexity and sensitivity to noise. The most accurate
techniques are the most complex and time consuming. We
realized the classification starting with the most simple and
fast methods and we increased the computational
complexity and the processing time with each presented
method.
As future work, we intend to combine a classical image
segmentation technique for an initial segmentation and then
to apply a deformable model in order to increase the
segmentation accuracy. We intend to calculate the region of
interest (ROI) on the segmented regions and then apply a
classifier technique in order to detect the Tuberculosis and if
present, we intend to find the intensity of its spread to
different regions in the thoracic cavity.
REFERENCES:
[1] S. V.Zharkova, EGSO, 29 october 2002. [Online].
Available:
https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s
&source=web&cd=2&cad=rja&uact=8&ved=0CCQ
QFjAB&url=http%3A%2F%2Fwww.researchgate.ne
t%2Fprofile%2FValentina_Zharkova%2Fpublication
%2F250738597_Survey_of_Image_Processing_Tech
niques%2Flinks%2F5488d3ae0cf268d28. [Accessed
february 2015].
[2] G.Dougherty, "Medical Image Processing
Techniques and Applicatios," Springer2011.
[3] D. W. k. D.Feng, july 2006. [Online]. Available:
http://www.comp.nus.edu.sg/~leowwk/thesis/dingfen
g-proposal.pdf. [Accessed march 2015].
[4] S. V. Kasmir Raja, A. Shaik Abdul Khadir, and S. S.
Riaz Ahamed, "Moving toward region-based image
segmentation techniques: a study", Journal of
Theoretical and Applied Information Technology,
5:81-87, 2009.
[5] S. S.K.Mahendran, "Enhanced automatic X-ray bone
image segmentation using wavelets and
morphological operators," 2011.
[6] M. W.Burgern, "Principles of Digital Image
Processing Fundamental Techniques," Springer,
2009.

Mais conteúdo relacionado

Mais procurados

Cardiac ct ccta2
Cardiac ct ccta2Cardiac ct ccta2
Cardiac ct ccta2Sahar Gamal
 
Stress imaging and viability assessment
Stress imaging and viability assessmentStress imaging and viability assessment
Stress imaging and viability assessmentYousra Ghzally
 
2020-ESC Sports in cardiac patients.pptx
2020-ESC Sports in cardiac patients.pptx2020-ESC Sports in cardiac patients.pptx
2020-ESC Sports in cardiac patients.pptxAyman Azoz
 
Intracoronary optical coherence tomography
Intracoronary optical coherence tomographyIntracoronary optical coherence tomography
Intracoronary optical coherence tomographyRamachandra Barik
 
Carotid Artery Stenting
Carotid Artery StentingCarotid Artery Stenting
Carotid Artery StentingDr Vipul Gupta
 
Minimally Invasive Cardiac Surgery
Minimally Invasive Cardiac SurgeryMinimally Invasive Cardiac Surgery
Minimally Invasive Cardiac SurgeryApollo Hospitals
 
DANISH trial (Cardiology)
 DANISH trial (Cardiology) DANISH trial (Cardiology)
DANISH trial (Cardiology)PRAVEEN GUPTA
 
Left main disease pci vs cabg excel trial 2016
Left main disease   pci vs cabg excel trial 2016Left main disease   pci vs cabg excel trial 2016
Left main disease pci vs cabg excel trial 2016Kunal Mahajan
 
Intravascular Ultrasound (IVUS)
Intravascular Ultrasound (IVUS)Intravascular Ultrasound (IVUS)
Intravascular Ultrasound (IVUS)Dr.Sayeedur Rumi
 
SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...
SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...
SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...vaibhavyawalkar
 
Coronary Stent Design- Part B
Coronary Stent Design- Part BCoronary Stent Design- Part B
Coronary Stent Design- Part BAmir Kraitzer
 
Coronary lesion assessment
Coronary lesion assessmentCoronary lesion assessment
Coronary lesion assessmentUday Prashant
 
Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction REV...
Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction  REV...Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction  REV...
Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction REV...hospital
 
catheter based management of pulmonary embolism
catheter based management of pulmonary embolismcatheter based management of pulmonary embolism
catheter based management of pulmonary embolismAmit Verma
 

Mais procurados (20)

The story of coronary stent
The story of coronary stentThe story of coronary stent
The story of coronary stent
 
Cardiac ct ccta2
Cardiac ct ccta2Cardiac ct ccta2
Cardiac ct ccta2
 
Stress imaging and viability assessment
Stress imaging and viability assessmentStress imaging and viability assessment
Stress imaging and viability assessment
 
2020-ESC Sports in cardiac patients.pptx
2020-ESC Sports in cardiac patients.pptx2020-ESC Sports in cardiac patients.pptx
2020-ESC Sports in cardiac patients.pptx
 
Intracoronary optical coherence tomography
Intracoronary optical coherence tomographyIntracoronary optical coherence tomography
Intracoronary optical coherence tomography
 
Carotid Artery Stenting
Carotid Artery StentingCarotid Artery Stenting
Carotid Artery Stenting
 
Minimally Invasive Cardiac Surgery
Minimally Invasive Cardiac SurgeryMinimally Invasive Cardiac Surgery
Minimally Invasive Cardiac Surgery
 
Shunt calculation
Shunt calculationShunt calculation
Shunt calculation
 
DANISH trial (Cardiology)
 DANISH trial (Cardiology) DANISH trial (Cardiology)
DANISH trial (Cardiology)
 
TAVI
TAVI TAVI
TAVI
 
Ivus oct
Ivus octIvus oct
Ivus oct
 
Clinical management of crt non responders
Clinical management of crt non respondersClinical management of crt non responders
Clinical management of crt non responders
 
Left main disease pci vs cabg excel trial 2016
Left main disease   pci vs cabg excel trial 2016Left main disease   pci vs cabg excel trial 2016
Left main disease pci vs cabg excel trial 2016
 
Intravascular Ultrasound (IVUS)
Intravascular Ultrasound (IVUS)Intravascular Ultrasound (IVUS)
Intravascular Ultrasound (IVUS)
 
Coronary ectasia
Coronary ectasiaCoronary ectasia
Coronary ectasia
 
SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...
SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...
SYNTAX Score in Patients With Diabetes Undergoing Coronary Revascularization ...
 
Coronary Stent Design- Part B
Coronary Stent Design- Part BCoronary Stent Design- Part B
Coronary Stent Design- Part B
 
Coronary lesion assessment
Coronary lesion assessmentCoronary lesion assessment
Coronary lesion assessment
 
Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction REV...
Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction  REV...Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction  REV...
Percutaneous Revascularization for Ischemic Left Ventricular Dysfunction REV...
 
catheter based management of pulmonary embolism
catheter based management of pulmonary embolismcatheter based management of pulmonary embolism
catheter based management of pulmonary embolism
 

Destaque

Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation pptGichelle Amon
 
Image segmentation
Image segmentationImage segmentation
Image segmentationRania H
 
Image segmentation
Image segmentationImage segmentation
Image segmentationDeepak Kumar
 
Voxel rendering on mobile devices
Voxel rendering on mobile devicesVoxel rendering on mobile devices
Voxel rendering on mobile devicesDevGAMM Conference
 
WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...
WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...
WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...grssieee
 
Image segmentation techniques
Image segmentation techniquesImage segmentation techniques
Image segmentation techniquesgmidhubala
 
Segments in Graphics
Segments in GraphicsSegments in Graphics
Segments in GraphicsRajani Thite
 
Intro to VR with Unreal Engine
Intro to VR with Unreal Engine   Intro to VR with Unreal Engine
Intro to VR with Unreal Engine Unreal Engine
 
Image processing in lung cancer screening and treatment
Image processing in lung cancer screening and treatmentImage processing in lung cancer screening and treatment
Image processing in lung cancer screening and treatmentWookjin Choi
 
IMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUESIMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUESVicky Kumar
 
Image segmentation
Image segmentationImage segmentation
Image segmentationMukul Jindal
 
Dental conebeamct
Dental conebeamctDental conebeamct
Dental conebeamctrolly_jatin
 
Mean shift and Hierarchical clustering
Mean shift and Hierarchical clustering Mean shift and Hierarchical clustering
Mean shift and Hierarchical clustering Yan Xu
 

Destaque (18)

IMAGE SEGMENTATION.
IMAGE SEGMENTATION.IMAGE SEGMENTATION.
IMAGE SEGMENTATION.
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation ppt
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Dip Image Segmentation
Dip Image SegmentationDip Image Segmentation
Dip Image Segmentation
 
Emergency 3 d imaging
Emergency 3 d imagingEmergency 3 d imaging
Emergency 3 d imaging
 
Voxel rendering on mobile devices
Voxel rendering on mobile devicesVoxel rendering on mobile devices
Voxel rendering on mobile devices
 
WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...
WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...
WE4.L09 - MEAN-SHIFT AND HIERARCHICAL CLUSTERING FOR TEXTURED POLARIMETRIC SA...
 
Image segmentation techniques
Image segmentation techniquesImage segmentation techniques
Image segmentation techniques
 
Segmentation Techniques -I
Segmentation Techniques -ISegmentation Techniques -I
Segmentation Techniques -I
 
Segments in Graphics
Segments in GraphicsSegments in Graphics
Segments in Graphics
 
Intro to VR with Unreal Engine
Intro to VR with Unreal Engine   Intro to VR with Unreal Engine
Intro to VR with Unreal Engine
 
Image processing in lung cancer screening and treatment
Image processing in lung cancer screening and treatmentImage processing in lung cancer screening and treatment
Image processing in lung cancer screening and treatment
 
IMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUESIMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUES
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Dental conebeamct
Dental conebeamctDental conebeamct
Dental conebeamct
 
Segmentation
SegmentationSegmentation
Segmentation
 
Mean shift and Hierarchical clustering
Mean shift and Hierarchical clustering Mean shift and Hierarchical clustering
Mean shift and Hierarchical clustering
 

Semelhante a A comparison of image segmentation techniques, otsu and watershed for x ray images

IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET-  	  Retinal Fundus Image Segmentation using Watershed AlgorithmIRJET-  	  Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET- Retinal Fundus Image Segmentation using Watershed AlgorithmIRJET Journal
 
A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...eSAT Journals
 
Instant fracture detection using ir-rays
Instant fracture detection using ir-raysInstant fracture detection using ir-rays
Instant fracture detection using ir-raysijceronline
 
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET Journal
 
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET Journal
 
A survey on content based medical image retrieval for
A survey on content based medical image retrieval forA survey on content based medical image retrieval for
A survey on content based medical image retrieval foreSAT Publishing House
 
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
 
Comparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniquesComparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniquesIAEME Publication
 
Classification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound imageClassification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound imageeSAT Publishing House
 
Brain tumor pattern recognition using correlation filter
Brain tumor pattern recognition using correlation filterBrain tumor pattern recognition using correlation filter
Brain tumor pattern recognition using correlation filtereSAT Publishing House
 
Gaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyGaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyeSAT Journals
 
IRJET- Detection and Classification of Leaf Diseases
IRJET-  	  Detection and Classification of Leaf DiseasesIRJET-  	  Detection and Classification of Leaf Diseases
IRJET- Detection and Classification of Leaf DiseasesIRJET Journal
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...eSAT Publishing House
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...eSAT Journals
 
IRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing MethodIRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing MethodIRJET Journal
 
CANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTING
CANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTINGCANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTING
CANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTINGIRJET Journal
 
Wavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammogramsWavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammogramseSAT Journals
 
Wavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammogramsWavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammogramseSAT Publishing House
 
IRJET- Image Enhancement using Various Discrete Wavelet Transformation Fi...
IRJET-  	  Image Enhancement using Various Discrete Wavelet Transformation Fi...IRJET-  	  Image Enhancement using Various Discrete Wavelet Transformation Fi...
IRJET- Image Enhancement using Various Discrete Wavelet Transformation Fi...IRJET Journal
 
IRJET- Segmentation and Visualization in Medical Image Processing: A Review
IRJET- Segmentation and Visualization in Medical Image Processing: A ReviewIRJET- Segmentation and Visualization in Medical Image Processing: A Review
IRJET- Segmentation and Visualization in Medical Image Processing: A ReviewIRJET Journal
 

Semelhante a A comparison of image segmentation techniques, otsu and watershed for x ray images (20)

IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET-  	  Retinal Fundus Image Segmentation using Watershed AlgorithmIRJET-  	  Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
 
A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...
 
Instant fracture detection using ir-rays
Instant fracture detection using ir-raysInstant fracture detection using ir-rays
Instant fracture detection using ir-rays
 
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
 
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
IRJET- Kidney Stone Classification using Deep Neural Networks and Facilitatin...
 
A survey on content based medical image retrieval for
A survey on content based medical image retrieval forA survey on content based medical image retrieval for
A survey on content based medical image retrieval for
 
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
 
Comparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniquesComparative performance analysis of segmentation techniques
Comparative performance analysis of segmentation techniques
 
Classification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound imageClassification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound image
 
Brain tumor pattern recognition using correlation filter
Brain tumor pattern recognition using correlation filterBrain tumor pattern recognition using correlation filter
Brain tumor pattern recognition using correlation filter
 
Gaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyGaussian noise reduction on images automatically
Gaussian noise reduction on images automatically
 
IRJET- Detection and Classification of Leaf Diseases
IRJET-  	  Detection and Classification of Leaf DiseasesIRJET-  	  Detection and Classification of Leaf Diseases
IRJET- Detection and Classification of Leaf Diseases
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...
 
IRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing MethodIRJET- Analysis of Plant Diseases using Image Processing Method
IRJET- Analysis of Plant Diseases using Image Processing Method
 
CANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTING
CANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTINGCANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTING
CANCER CLUMPS DETECTION USING IMAGE PROCESSING BASED ON CELL COUNTING
 
Wavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammogramsWavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammograms
 
Wavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammogramsWavelet transformation based detection of masses in digital mammograms
Wavelet transformation based detection of masses in digital mammograms
 
IRJET- Image Enhancement using Various Discrete Wavelet Transformation Fi...
IRJET-  	  Image Enhancement using Various Discrete Wavelet Transformation Fi...IRJET-  	  Image Enhancement using Various Discrete Wavelet Transformation Fi...
IRJET- Image Enhancement using Various Discrete Wavelet Transformation Fi...
 
IRJET- Segmentation and Visualization in Medical Image Processing: A Review
IRJET- Segmentation and Visualization in Medical Image Processing: A ReviewIRJET- Segmentation and Visualization in Medical Image Processing: A Review
IRJET- Segmentation and Visualization in Medical Image Processing: A Review
 

Mais de eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

Mais de eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Último

UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 

Último (20)

UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 

A comparison of image segmentation techniques, otsu and watershed for x ray images

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 720 A COMPARISON OF IMAGE SEGMENTATION TECHNIQUES, OTSU AND WATERSHED FOR X-RAY IMAGES P. Manju Bhargavi1 , V. Sai Kiran Mayee2 , T. Manaswini3 , S. Manvitha4 1 Department of Biomedical Engineering, GRIET, Hyderabad 2 Department of Biomedical Engineering, GRIET, Hyderabad 3 Department of Biomedical Engineering, GRIET, Hyderabad 4 Department of Biomedical Engineering, GRIET, Hyderabad Abstract The most dangerous and rapidly spreading disease in the world is Tuberculosis. In the investigating for suspected tuberculosis (TB), chest radiography is the only key techniques of diagnosis based on the medical imaging So, Computer aided diagnosis (CAD) has been popular and many researchers are interested in this research areas and different approaches have been proposed for the TB detection. Image segmentation plays a great importance in most medical imaging, by extracting the anatomical structures from images. There exist many image segmentation techniques in the literature, each of them having their own advantages and disadvantages. The aim of X-ray segmentation is to subdivide the image in different portions, so that it can help during the study the structure of the bone, for the detection of disorder. The goal of this paper is to review the most important image segmentation methods starting from a data base composed by real X-ray images. Keywords— chest radiography, computer aided diagnosis, image segmentation, anatomical structures, real X-rays. ---------------------------------------------------------------------***-------------------------------------------------------------------- 1. INTRODUCTION Tuberculosis (TB) is an infectious disease over the world population. It is caused by bacteria which is known as Mycobacterium tuberculosis and mostly affected to the lungs of the human beings. In order to detect Tuberculosis, we have set of steps involved [1]. A CAD system usually applies a series of pre-processing steps to an input image. The pre-processing step is performed to enhance the image quality so that objects of interest become more evident. The quality of the pre- processing step strongly affects the performance of the subsequent processing steps. The pre-processing steps for X-ray screening are contrast enhancement and lung boundary detection. The software implementation of these steps is shown in this paper. When analyzing objects in images, it is necessary to distinguish the objects of interest from the background. This task can be realized through segmentation. Image segmentation is one of the most challenging issues in image processing domain [2] and it has been an active research area in the last years. Through segmentation we aim to fragment the image in a series of regions, based on the attributes of the image that are approximately constant in each region, but differ significantly from a region to another. Segmentation aims to extract useful information from images in medical imaging applications as well Medical images segmentation [2] has also found applications in studying the anatomical structure, fractures localizations or tumors, diagnosis and treatment planning, computer- integrated surgery, tissue classification, or tumor volume estimation. They are also affected by noise, artifacts or spatial aliasing so that the boundaries of the regions of interest to become indistinct. X-rays are having various orientations, resolutions, and luminous intensities, depending on the X-ray equipment, which influences the quality of the segmentation result [3]. Unlike many other medical imaging modalities, bone regions often overlap with other organs or bones and the joints between bones in X- rays. Several segmentation techniques have been developed and reported in the literature. However, a perfect method, which is universally applicable to all kind of images, does not exist. This paper focuses on the comparison of several already existing image segmentation techniques in the case of X-ray images. 2. WORK 2.1 Pre-Processing: The objective of the image pre-processing is not only to improve the image quality but also to reduce the undesired portion from the background of the images. Most pre- processing methods apply the intensity value of neighborhood pixel for obtaining the brightness intensity value of the input images. The reasons for the image pre- processing phase are: i. In order to meet the requirements of the physician for the image quality improvement. ii. Edge detection –To detect the edges, Sobel operator is discussed in this paper. iii. Contrast enhancement - To enhance the contrast at the region of interest, histogram equalization is performed on the image. Histogram analysis increases the contrast in low-contrast regions by spreading out the most frequent intensity levels.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 721 iv. Preparing the data optimally for post-processing steps. The process is described in figure 1. Fig 1: Flowchart of pro-processing step Fig 2: Output of pre-processing step In figure 2, the first image is the input which is a gray image converted from RGB image. The second is histogram equalized image and the last is the edge detected image using a Sobel operator. 2.2 Segmentation Techniques Image segmentation is very important step to extract good quality features for classification. The objective of image segmentation is to cluster the pixels having same intensity value from the whole image regions, separating regions of desired part of the original image, hiding the undesired region. Image segmentation step is applied in many image pre-processing areas such as editing, or query from image database, object occlusion, recognition of object, estimation of the boundary and image compression. In general, algorithms for image segmentation are based on two fundamental properties of intensity values which are discontinuity and similarity. Discontinuity property does the partition of the image based on the changes in sharp intensity value. Similarity property does the partition of the image into regions that are alike to the specified criteria. In chest radiographs, segmentation process must be done accurately for the medical image analysis task which is especially for computer-aided diagnosis. For example, lung nodules are determined according to the different measurements of nodules size. Different kinds of approaches have been discussed in the lung segmentation step. Various approaches for lung segmentation are presented which includes: 2.2.1 Watershed Segmentation Watershed segmentation (watershed transform) is a region- based method [4] under the classical technique of segmentation. This method is based on the grayscale mathematical morphology [5] and it is used for multi component images. Intuitively, the watershed algorithm can be thought of as a landscape that is flooded by water. At each point, the height of the landscape represents the pixel's intensity. The watershed transform computes the image regions which represent the basins and region boundaries (the ridgelines). The image gradient is used as input of the transform, such that the basin limits are situated at high gradient points. The steps involved in this method are shown in figure 3. A Watershed segmentation process starts at some regional minima Mi value which locates the lowest points of the area into where the water flows. By measuring appropriate distance, the area is separated into regions Ωi which has growth from the corresponding minimum Mi by adding to Ωi, repeatedly, unlabeled points on the outer boundary of Ωi. A point is added to region Ωi If its distance from the region is smaller than those from other regions. The process is repeated until no remaining unlabeled points are those of the watershed line. In implementation, in order to obtain a thin- watershed line, a point is added to the region Ωi even when its distance from the region equals those from some other regions. Hence, there is no point that belongs to the watershed line. This type of segmentation method is very simple and intuitive and has good properties, which make it useful for many image segmentation applications. However, it has other disadvantages such as: over-segmentation and poor at detecting thin structures and structures with low signal-to- noise ratio.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 722 Fig 3: Flowchart of Watershed segmentation Fig 4: Output of reconstruction technique In figure 4, the first image is opening and closing technique by reconstruction and the next image is the regional maxima of opening and closing technique by reconstruction. Fig 5: Output of thresholding technique In figure 5, the first image is by applying a threshold to the opening-closing reconstruction technique and the next image is the watershed ridge line. Fig 6: Output of watershed segmentation In figure 6, markers and object boundaries are superimposed on an original image and the last image is the coloured watershed label matrix. 2.2.2 Otsu Thresholding Thresholding is one of the most simple segmentation techniques [2], involves thresholding the intensity of the image. In the case of global thresholding, only one threshold value is selected for the entire image. Global methods are based on the fact that the image has a bimodal histogram. The region of interest can be separated from the background by comparing the intensity of each pixel in the image with a threshold. Some pixels, whose intensity values are greater than the threshold, are classified as being part of group A - object of interest (with an intensity value of 1), and the rest of the pixels as being part of group B-background (with an intensity value of 0). The following assumptions are applied in Otsu method:
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 04 | Apr-2015, Available @ http://www.ijret.org 723 i. The image has a bimodal histogram. ii. Neither use of spatial coherence nor any other object structure. iii. Intensity values are stationary statistics but they can be changed to locally adaptive. iv. Intensities are implicitly uniform illumination thus the brightness behavior of the bimodal arises from the object appearance differences only. Global methods are simple and fast, but are suitable only for images with bimodal intensity distribution (probability distribution with two different modes). Another factor that affects the performance of thresholding is the unequal illumination in the image. In addition, global methods are not useful for multichannel images, since only two classes are generated. Figure 7 shows the procedure involved in otsu thresholding. Fig 7: Flowchart of Otsu thresholding technique Fig 8: Output of Otsu thresholding technique In figure 8, the first image is the original image that is given as the input which is actually pre-processed and the next three images are obtained by setting different threshold values to the input image. 3. CONCLUSION We described a series of approaches that have been published in the recent literature, concerning medical images segmentation. We have provided an overview regarding the implementation of each segmentation method, highlighting the advantages and disadvantages of each method. The evaluation of these segmentation techniques can be done, in terms of: performance, computational complexity and sensitivity to noise. The most accurate techniques are the most complex and time consuming. We realized the classification starting with the most simple and fast methods and we increased the computational complexity and the processing time with each presented method. As future work, we intend to combine a classical image segmentation technique for an initial segmentation and then to apply a deformable model in order to increase the segmentation accuracy. We intend to calculate the region of interest (ROI) on the segmented regions and then apply a classifier technique in order to detect the Tuberculosis and if present, we intend to find the intensity of its spread to different regions in the thoracic cavity. REFERENCES: [1] S. V.Zharkova, EGSO, 29 october 2002. [Online]. Available: https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s &source=web&cd=2&cad=rja&uact=8&ved=0CCQ QFjAB&url=http%3A%2F%2Fwww.researchgate.ne t%2Fprofile%2FValentina_Zharkova%2Fpublication %2F250738597_Survey_of_Image_Processing_Tech niques%2Flinks%2F5488d3ae0cf268d28. [Accessed february 2015]. [2] G.Dougherty, "Medical Image Processing Techniques and Applicatios," Springer2011. [3] D. W. k. D.Feng, july 2006. [Online]. Available: http://www.comp.nus.edu.sg/~leowwk/thesis/dingfen g-proposal.pdf. [Accessed march 2015]. [4] S. V. Kasmir Raja, A. Shaik Abdul Khadir, and S. S. Riaz Ahamed, "Moving toward region-based image segmentation techniques: a study", Journal of Theoretical and Applied Information Technology, 5:81-87, 2009. [5] S. S.K.Mahendran, "Enhanced automatic X-ray bone image segmentation using wavelets and morphological operators," 2011. [6] M. W.Burgern, "Principles of Digital Image Processing Fundamental Techniques," Springer, 2009.