SlideShare a Scribd company logo
Scientific Journal Impact Factor (SJIF): 1.711
International Journal of Modern Trends in Engineering
and Research
www.ijmter.com
@IJMTER-2014, All rights Reserved 1
e-ISSN: 2349-9745
p-ISSN: 2393-8161
Review of Image Segmentation Techniques based on Region Merging
Approach
Shanu Sharma1
, Vivek Jain2
1,2
Computer Science & Engineering, SRCEM, Banmore, Morena,M.P
Abstract - Image segmentation is an important task in computer vision and object recognition. Since
fully automatic image segmentation is usually very hard for natural images, interactive schemes with a
few simple user inputs are good solutions. In image segmentation the image is dividing into various
segments for processing images. The complexity of image content is a bigger challenge for carrying out
automatic image segmentation. On regions based scheme, the images are merged based on the similarity
criteria depending upon comparing the mean values of both the regions to be merged. So, the similar
regions are then merged and the dissimilar regions are merged together.
Keywords - image segmentation, region-based methods, seeded region growing, clustering, region
splitting.
I. INTRODUCTION
Image segmentation refers to the partition of an image into a set of regions that cover it. Main goal is to
represent regions of meaningful areas of the image, such as the crops, urban areas, and forests of a
satellite image. In other analysis, the regions of images might be set of border pixels and grouped into
such structures as line segments and circular arc segments of 3D industrial objects. In image
segmentation, an image is divided into a number of discrete regions such that the pixels have high
similarity in each region and high contrast between regions; and regions may be depending as groups of
pixels having both a border and a particular shape such as a circle or ellipse or polygon.
Properties like gray-level, color, intensity, texture, depth or motion help to recognize similar regions
and similarity of such properties, is used to construct groups of regions having a specific meaning.
Segmentation is a valuable tool in many fields including industry, health care, image processing, remote
sensing, traffic image, content based image, pattern recognition, video and computer vision etc. A
particular type of image segmentation method can be found in application involving the detection,
recognition, and measurement of objects in an image [1].
By understanding images, the information extracted from them can be used for other tasks for example,
navigation of robots, extracting malign tissues from the body scans, detection of cancerous cells and
identification of an airport from remote sensing data. Now there is need of a method. With the help of
which, we can understand images and extract information or objects [3,5].
Image segmentation is the process of assigning a label to every pixel in an image such that pixels with
the same label share certain visual characteristics. Other type of segmentation is color-based
segmentation, which this paper interested in. Image segmentation has many application for example in
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 2
medical imaging, to locate tumors, pathologies, measure tissue volumes, computer-guided surgery,
diagnosis, treatment planning and study of anatomical structure or for locating objects in satellite images
and it can be used for face and fingerprint recognition, traffic control systems and brake light detection
and machine vision. Several general-purpose algorithms and techniques have been developed for image
segmentation [6].
II. LITERATURE REVIEW
Jifeng Ning [12] described the Efficient and effective image segmentation is an important task in
computer vision and object recognition. Since fully automatic image segmentation is usually very hard
for natural images, interactive schemes with a few simple user inputs are good solutions. A novel
maximal-similarity based region merging mechanism is proposed to guide the merging process with the
help of markers.
An approach for color image segmentation is described Vijay Jumb [2]. In this method foreground
objects are distinguished clearly from the background. As the HSV color space is similar to the way
human eyes perceive color, hence in this method, first RGB image is converted to HSV (Hue,
Saturation, Value) color model and V (Value) channel is extracted, as Value corresponds directly to the
concept of intensity/brightness in the color basics section. Next an Otsu’s multi-thresholding is applied
on V channel to get the best thresholds from the image. The result of Otsu’s multi-thresholding may
consist of over segmented regions, hence K-means clustering is applied to merge the over segmented
regions.
Faten Abu Shmmala [6] described the color based image segmentation is done in two spaces. First in
LAB color space and second in RGB space all that done using three versions of K-Means: K-Means,
Weighted K-Means and Inverse Weighted K-Means clustering algorithms for different types of images:
biological images (tissues and blood cells) and ordinary full colored images.
One of the important technologies for image processing is image segmentation is described by Hydin
John [7]. The complexity of image content is still a big challenge for carrying out automatic image
segmentation. The user guidance can help to define the desired content to be extracted and thus reduce
the ambiguities produced by the automatic methods. On this paper It discusses the various segmentation
techniques for pixel based image segmentation, region based image segmentation, edge based image
segmentation, and graph based image segmentation.
The conceptual details discussed V Dey [9] of the techniques are explained and mathematical details are
avoided for simplicity. Both broad and detailed categorizations of reviewed segmentation techniques are
provided. The state of art research on each category is provided with emphasis on developed
technologies and image properties used by them.
Chen Jian, Yan Bin, Jiang Hua, Zeng Lei, Tong Li [14], proposed an improved maximal similarity
based region merging technique. An improved algorithm of maximal similarity based region are used
SLIC superpixels segmentation to obtain presegmented regions, using SLIC superpixles, it is easy to
control the number of resegmentation regions. It also introduce the texture features differeces while
rigion merging, so they can obtain the accuracy of similarity measurement.
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 3
III. REGION-BASED SEGMENTATION METHODS
It divides the entire image into sub regions depending on some rules like all the pixels in one region
must have the same gray level. Region-based methods mainly rely on the assumption that is made
clusters on their similarities. If the neighboring pixels within one region have similar value, then
compare one pixel with its neighbors. If a similarity criterion is satisfied, the pixel can be set belong to
the cluster as one or more of its neighbors. The selection of the similarity criterion is significant and the
results are influenced by noise in all instances. In this section discussing the different region based
segmentation methods.
3.1. Seeded Region Growing Method
The seeded region growing method is one of the simplest region-based segmentation methods. It
performs a segmentation of an image on the following steps:
Step1: We start with a number of seed points, which have been clustered into n clusters and add new
pixels slowly.
Step2: Select the seed pixel and the selection depends on:
•
• The nature of the problem.
• If targets need to be detected using infrared images for example, choose the brightest pixel.
Step3: Check the neighboring pixels and add them to the region if they are similar to the seed.
Step4: Repeat Step3 until all pixels in image have been allocated to a suitable cluster. for each of the
newly added pixels;
Step5: Stop if no more pixels can be added.
Drawbacks:
• The initial seed-points problem means the different sets of initial seed points cause different
segmentation results. And it reduces the stability of segmentation results from the same image.
• It is time-consuming because SRG requires lots of computation time.
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 4
3.2. Unseed Region Growing Method
Their distinction is that no explicit seed selection is necessary. In the segmentation procedure, the seeds
could be generated automatically. So this method can perform fully automatic segmentation with the
added benefit of robustness from being a region-based segmentation. The steps of unseed region
growing method are as below.
Step1: We start with a number of seed points, which have been clustered into n clusters and add new
pixels slowly.
Step2: Initializes the first cluster with a single image pixel and each image pixel classify into different
clusters.
Step3: Select a pixel from image and check it.
Step4: Each pixel value assign to a cluster.
Step5: After each pixel has been allocated to the cluster, the mean pixel value of the cluster must be
updated.
Step6: Iterate Step2 to 5 until all pixels have been assigned to a cluster.
3.3. Region Splitting and Merging
The main issue of region splitting and merging is to distinguish the homogeneity of the image, Its work
on two steps: first the image is split depending on some criterion and then it is merged. The whole image
is initially considered as a single region then some measure of internal similarity is computed using
standard deviation. If too much variety occurs then the image is split into regions using thresholding.
This is repeated until no more splits are further possible. Quad tree is a common data structure used for
splitting. Then comes the merging phase, where two regions are merged if they are adjacent and similar.
Merging is repeated until no more further merging is possible. The major advantage of this technique is
guaranteed connected regions. Quad trees are widely used in Geographic information system.
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 5
Merits:
a. Images can be split continuously according to required resolution.
b. We can split the images also on the basis of classification.
c. The merging approach is different from splitting approach.
Demerits:
a. It may produce the blocky segments.
3.4 Maximal Similarity based Region Merging:
The image is to classify into homogeneous regions for merging. A region can be described in many
aspects, such as the color, edge, texture, shape and size of the region. The region merging based
segmentation, color histogram is more robust than the other feature descriptors. Maximal similarity
based region merging approach work on following steps.
Step1: Select an image, and classify on the basis of their features such as the color, edge, texture, shape
and size of the region.
Step2: Find the homogeneous regions from selected image.
Step3: Mark the regions as object and background regions.
Step4: Determine the similarity between the unmarked regions with the help of marked regions.
Step5: Each similar region group put into different clusters.
Step6: Repeat step 2 to 5, until scan the each pixel of an image.
Step7: stop.
IV.CONCLUSION
There have been many image segmentation methods created and being created using many distinct
approaches and algorithms but still it is very difficult to assess and compare the performance of these
segmentation techniques. The initial seed points cause different segmentation results. And it reduces the
stability of segmentation results from the same image. Seed point method is a time consuming process.
With the Maximal Similarity based Region Merging rule, a two stage iterative merging algorithm was
presented to gradually label each non-marker region as either object or background. The proposed
scheme efficiently exploits the color similarity of the target object so that it is robust to the variations of
input markers. In the context of region merging based segmentation, color histogram is more robust than
the other feature descriptors. This is because the initially segmented small regions of the desired object
often vary a lot in size and shape, while the colors of different regions from the same object will have
high similarity.
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 6
BIBLIOGRAPHY
Vivek Kumar Jain is an Assistant Professor of Department of Computer Science &
Engineering, SRCEM, Banmore, Morena,M.P., India. He received the bachelor’s degree in
Computer Science & Engineering from SRCEM, Banmore, Morena, M.P., India, in 2006 and
M.Tech. Degree in Software System from SATI, Vidisha, M.P., in 2012 respectively. His
interests include data mining and image processing. He is currently working on image
segmentation.
Shanu Sharma is a M.Tech.student in Department of Computer Science & Engineering,
SRCEM, Banmore, Morena,M.P., India. She received the bachelor’s degree in Computer
Science & Engineering from BBM College of Technology and management, Gwalior, M.P.,
India, in 2010. Her interests include data mining and image processing. She is currently
working on image segmentation.
REFRENCES
[1] Vijay Jumb, Mandar Sohani, Avinash Shrivas, “ Color Image Segmentation Using K-Means Clustering and Otsu’s
Adaptive Thresholding”, (IJITEE) ISSN: 2278-3075, Volume-3, Issue-9, February 2014.
[2] Sameena Banu, Apparao Giduturi, Syed Abdul Sattar, “Interactive Image Segmentation and Edge Detection of Medical
Images”, ISSN (print): 2249-7277 ISSN (online): 2277-7970) Volume-3 Number-4 Issue-13 December-2013.
[3] Nehaverma, Deepak Sharma, “Advanced Maximal Similarity Based Region Merging By User Interactions”, IJERA),
ISSN: 2248-9622, Vol. 3, Issue 4, Jul-Aug 2013, pp.681-688.
[4] H.P. Narkhede, “ Review of Image Segmentation Techniques”, (IJISME) ISSN: 2319-6386, Volume-1, Issue-8, July
2013.
[5] G.SUMANA, G.ANJAN BABU, “An Efficient Interactive Image Segmentation by Maximal Similarity Based Region
Merging With Artificial Neural Networks for MRI Medical Images”, IJESR , Vol 04, Special Issue 01, 2013, ACICE-2013,
ISSN: 2230-8504; e-ISSN-2230-8512.
[6] Faten Abu Shmmala, Wesam Ashour, “Color Based Image Segmentation using Different Versions of K-Means in two
Spaces”, Global Advanced Research Journal of Engineering, Technology and Innovation (ISSN: 2315-5124) Vol. 1(9) pp.
030-041, January, 2013
[7] Hydin John, J Anitha, “A Study of Image Segmentation Approaches”, IJARECE, ISSN: 2278–909X, Volume 1, Issue 4,
October 2012.
[8] Banudevareddy. B and Prasanna Kumari. P, “Similarity Based Region Merging Interactive Image Segmentation”,
International Journal of Information Systems and Computer Sciences, Volume 1, No.1, September - October 2012.
[9] S.Dhanalakshmi, T.Ravichandran, “ A New Method for Image Segmentation”, IJARCSSE Volume 2, Issue 9,
September 2012 ISSN: 2277 128X.
[10] V. Dey, Y. Zhang, M. Zhong, “A REVIEW ON IMAGE SEGMENTATION TECHNIQUES WITH REMOTE
SENSING PERSPECTIVE”, Austria, July 5–7, 2010, IAPRS, Vol. XXXVIII, Part 7A.
[11] Nikita Sharma, Mahendra Mishra, Manish Shrivastava, “COLOUR IMAGE SEGMENTATION TECHNIQUES AND
ISSUES: AN APPROACH”, International Journal of Scientific & Technology Research Volume 1, Issue 4, May 2012, ISSN
2277-8616.
[12] Salem Saleh Al-amri1, N.V. Kalyankar2 and Khamitkar S.D, “Image Segmentation by Using Thershod Techniques”,
JOURNAL OF COMPUTING, VOLUME 2, ISSUE 5, MAY 2010, ISSN 2151-9617.
[13] Jifeng Ning, Lei Zhang, David Zhang, Chengke Wu,” Interactive image segmentation by maximal similarity based
region merging”, 2009 Elsevier.
[14]Chen Jian, Yan Bin, Jiang Hua, Zeng Lei, Tong Li, “Interactive image segmentation by improved maximal similarity
based region merging”, ISSN: 978-1-4673-5887-3/13/, 2013 IEEE.
Review of Image Segmentation Techniques based on Region Merging Approach
Review of Image Segmentation Techniques based on Region Merging Approach

More Related Content

What's hot

Digital image classification
Digital image classificationDigital image classification
Digital image classification
Aleemuddin Abbasi
 
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Akshit Arora
 
Image segmentation 2
Image segmentation 2 Image segmentation 2
Image segmentation 2 Rumah Belajar
 
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPTImage Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
Akshit Arora
 
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACHGRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
Journal For Research
 
Image pre processing - local processing
Image pre processing - local processingImage pre processing - local processing
Image pre processing - local processingAshish Kumar
 
Video Segmentation
Video SegmentationVideo Segmentation
Video Segmentation
Smriti Jain
 
Image segmentation ajal
Image segmentation ajalImage segmentation ajal
Image segmentation ajal
AJAL A J
 
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Pinaki Ranjan Sarkar
 
Otsu binarization
Otsu binarizationOtsu binarization
Otsu binarization
yalda akbarzadeh
 
Watershed
WatershedWatershed
Watershed
Amnaakhaan
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
Tubur Borgoary
 
Edge Detection and Segmentation
Edge Detection and SegmentationEdge Detection and Segmentation
Edge Detection and Segmentation
A B Shinde
 
Segmentation Techniques -I
Segmentation Techniques -ISegmentation Techniques -I
Segmentation Techniques -I
Hemantha Kulathilake
 
Digital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationDigital Image Processing: Image Segmentation
Digital Image Processing: Image Segmentation
Mostafa G. M. Mostafa
 
Presentation on deformable model for medical image segmentation
Presentation on deformable model for medical image segmentationPresentation on deformable model for medical image segmentation
Presentation on deformable model for medical image segmentation
Subhash Basistha
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
Bulbul Agrawal
 
various methods for image segmentation
various methods for image segmentationvarious methods for image segmentation
various methods for image segmentationRaveesh Methi
 
Region-based Semi-supervised Clustering Image Segmentation
Region-based Semi-supervised Clustering Image SegmentationRegion-based Semi-supervised Clustering Image Segmentation
Region-based Semi-supervised Clustering Image Segmentation
Onur Yılmaz
 

What's hot (20)

Digital image classification
Digital image classificationDigital image classification
Digital image classification
 
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
 
Image segmentation 2
Image segmentation 2 Image segmentation 2
Image segmentation 2
 
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPTImage Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
 
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACHGRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
 
Image pre processing - local processing
Image pre processing - local processingImage pre processing - local processing
Image pre processing - local processing
 
Video Segmentation
Video SegmentationVideo Segmentation
Video Segmentation
 
Image segmentation ajal
Image segmentation ajalImage segmentation ajal
Image segmentation ajal
 
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
 
Otsu binarization
Otsu binarizationOtsu binarization
Otsu binarization
 
Segmentation
SegmentationSegmentation
Segmentation
 
Watershed
WatershedWatershed
Watershed
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
 
Edge Detection and Segmentation
Edge Detection and SegmentationEdge Detection and Segmentation
Edge Detection and Segmentation
 
Segmentation Techniques -I
Segmentation Techniques -ISegmentation Techniques -I
Segmentation Techniques -I
 
Digital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationDigital Image Processing: Image Segmentation
Digital Image Processing: Image Segmentation
 
Presentation on deformable model for medical image segmentation
Presentation on deformable model for medical image segmentationPresentation on deformable model for medical image segmentation
Presentation on deformable model for medical image segmentation
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
various methods for image segmentation
various methods for image segmentationvarious methods for image segmentation
various methods for image segmentation
 
Region-based Semi-supervised Clustering Image Segmentation
Region-based Semi-supervised Clustering Image SegmentationRegion-based Semi-supervised Clustering Image Segmentation
Region-based Semi-supervised Clustering Image Segmentation
 

Viewers also liked

Image segmentation
Image segmentationImage segmentation
Image segmentationMukul Jindal
 
A Literature Review on Iris Segmentation Techniques for Iris Recognition Systems
A Literature Review on Iris Segmentation Techniques for Iris Recognition SystemsA Literature Review on Iris Segmentation Techniques for Iris Recognition Systems
A Literature Review on Iris Segmentation Techniques for Iris Recognition Systems
IOSR Journals
 
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
IJEEE
 
Segmentation Techniques -II
Segmentation Techniques -IISegmentation Techniques -II
Segmentation Techniques -II
Hemantha Kulathilake
 
Automatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal ImagesAutomatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal Images
Harish Rajula
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
Rania H
 
Image segmentation
Image segmentationImage segmentation
Image segmentationDeepak Kumar
 
CANCER CELL DETECTION USING DIGITAL IMAGE PROCESSING
CANCER  CELL  DETECTION USING DIGITAL IMAGE PROCESSINGCANCER  CELL  DETECTION USING DIGITAL IMAGE PROCESSING
CANCER CELL DETECTION USING DIGITAL IMAGE PROCESSING
kajikho9
 
Edge Detection algorithm and code
Edge Detection algorithm and codeEdge Detection algorithm and code
Edge Detection algorithm and code
Vaddi Manikanta
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation pptGichelle Amon
 
Paper id 212014108
Paper id 212014108Paper id 212014108
Paper id 212014108IJRAT
 

Viewers also liked (12)

Image segmentation
Image segmentationImage segmentation
Image segmentation
 
A Literature Review on Iris Segmentation Techniques for Iris Recognition Systems
A Literature Review on Iris Segmentation Techniques for Iris Recognition SystemsA Literature Review on Iris Segmentation Techniques for Iris Recognition Systems
A Literature Review on Iris Segmentation Techniques for Iris Recognition Systems
 
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
 
Segmentation Techniques -II
Segmentation Techniques -IISegmentation Techniques -II
Segmentation Techniques -II
 
Automatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal ImagesAutomatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal Images
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
CANCER CELL DETECTION USING DIGITAL IMAGE PROCESSING
CANCER  CELL  DETECTION USING DIGITAL IMAGE PROCESSINGCANCER  CELL  DETECTION USING DIGITAL IMAGE PROCESSING
CANCER CELL DETECTION USING DIGITAL IMAGE PROCESSING
 
Edge Detection algorithm and code
Edge Detection algorithm and codeEdge Detection algorithm and code
Edge Detection algorithm and code
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation ppt
 
Edge detection
Edge detectionEdge detection
Edge detection
 
Paper id 212014108
Paper id 212014108Paper id 212014108
Paper id 212014108
 

Similar to Review of Image Segmentation Techniques based on Region Merging Approach

IRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A ReviewIRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A Review
IRJET Journal
 
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATIONCOLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
IAEME Publication
 
International Journal of Computational Engineering Research(IJCER)
 International Journal of Computational Engineering Research(IJCER)  International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
IJSRD
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
IJERD Editor
 
Multitude Regional Texture Extraction for Efficient Medical Image Segmentation
Multitude Regional Texture Extraction for Efficient Medical Image SegmentationMultitude Regional Texture Extraction for Efficient Medical Image Segmentation
Multitude Regional Texture Extraction for Efficient Medical Image Segmentation
inventionjournals
 
93202101
9320210193202101
93202101
IJRAT
 
Massive Regional Texture Extraction for Aerial and Natural Images
Massive Regional Texture Extraction for Aerial and Natural ImagesMassive Regional Texture Extraction for Aerial and Natural Images
Massive Regional Texture Extraction for Aerial and Natural Images
IOSR Journals
 
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSIONADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ijistjournal
 
G04544346
G04544346G04544346
G04544346
IOSR-JEN
 
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSIONADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ijistjournal
 
SIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdfSIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdf
DrAhmedElngar
 
Color Image Segmentation Technique Using “Natural Grouping” of Pixels
Color Image Segmentation Technique Using “Natural Grouping” of PixelsColor Image Segmentation Technique Using “Natural Grouping” of Pixels
Color Image Segmentation Technique Using “Natural Grouping” of Pixels
CSCJournals
 
L045066671
L045066671L045066671
L045066671
IJERA Editor
 
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
IIRindia
 
Face Detection in Digital Image: A Technical Review
Face Detection in Digital Image: A Technical ReviewFace Detection in Digital Image: A Technical Review
Face Detection in Digital Image: A Technical Review
IJERA Editor
 
Ea4301770773
Ea4301770773Ea4301770773
Ea4301770773
IJERA Editor
 
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
IRJET Journal
 

Similar to Review of Image Segmentation Techniques based on Region Merging Approach (20)

Q0460398103
Q0460398103Q0460398103
Q0460398103
 
IRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A ReviewIRJET- Image Segmentation Techniques: A Review
IRJET- Image Segmentation Techniques: A Review
 
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATIONCOLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
 
International Journal of Computational Engineering Research(IJCER)
 International Journal of Computational Engineering Research(IJCER)  International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Multitude Regional Texture Extraction for Efficient Medical Image Segmentation
Multitude Regional Texture Extraction for Efficient Medical Image SegmentationMultitude Regional Texture Extraction for Efficient Medical Image Segmentation
Multitude Regional Texture Extraction for Efficient Medical Image Segmentation
 
Bx4301429434
Bx4301429434Bx4301429434
Bx4301429434
 
93202101
9320210193202101
93202101
 
Massive Regional Texture Extraction for Aerial and Natural Images
Massive Regional Texture Extraction for Aerial and Natural ImagesMassive Regional Texture Extraction for Aerial and Natural Images
Massive Regional Texture Extraction for Aerial and Natural Images
 
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSIONADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
 
G04544346
G04544346G04544346
G04544346
 
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSIONADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
ADOPTING AND IMPLEMENTATION OF SELF ORGANIZING FEATURE MAP FOR IMAGE FUSION
 
SIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdfSIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdf
 
Color Image Segmentation Technique Using “Natural Grouping” of Pixels
Color Image Segmentation Technique Using “Natural Grouping” of PixelsColor Image Segmentation Technique Using “Natural Grouping” of Pixels
Color Image Segmentation Technique Using “Natural Grouping” of Pixels
 
L045066671
L045066671L045066671
L045066671
 
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
 
Face Detection in Digital Image: A Technical Review
Face Detection in Digital Image: A Technical ReviewFace Detection in Digital Image: A Technical Review
Face Detection in Digital Image: A Technical Review
 
Ea4301770773
Ea4301770773Ea4301770773
Ea4301770773
 
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
 

More from Editor IJMTER

A NEW DATA ENCODER AND DECODER SCHEME FOR NETWORK ON CHIP
A NEW DATA ENCODER AND DECODER SCHEME FOR  NETWORK ON CHIPA NEW DATA ENCODER AND DECODER SCHEME FOR  NETWORK ON CHIP
A NEW DATA ENCODER AND DECODER SCHEME FOR NETWORK ON CHIP
Editor IJMTER
 
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
Editor IJMTER
 
Analysis of VoIP Traffic in WiMAX Environment
Analysis of VoIP Traffic in WiMAX EnvironmentAnalysis of VoIP Traffic in WiMAX Environment
Analysis of VoIP Traffic in WiMAX Environment
Editor IJMTER
 
A Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-DuplicationA Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-Duplication
Editor IJMTER
 
Aging protocols that could incapacitate the Internet
Aging protocols that could incapacitate the InternetAging protocols that could incapacitate the Internet
Aging protocols that could incapacitate the Internet
Editor IJMTER
 
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
Editor IJMTER
 
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMESA CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
Editor IJMTER
 
Sustainable Construction With Foam Concrete As A Green Green Building Material
Sustainable Construction With Foam Concrete As A Green Green Building MaterialSustainable Construction With Foam Concrete As A Green Green Building Material
Sustainable Construction With Foam Concrete As A Green Green Building Material
Editor IJMTER
 
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TESTUSE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
Editor IJMTER
 
Textual Data Partitioning with Relationship and Discriminative Analysis
Textual Data Partitioning with Relationship and Discriminative AnalysisTextual Data Partitioning with Relationship and Discriminative Analysis
Textual Data Partitioning with Relationship and Discriminative Analysis
Editor IJMTER
 
Testing of Matrices Multiplication Methods on Different Processors
Testing of Matrices Multiplication Methods on Different ProcessorsTesting of Matrices Multiplication Methods on Different Processors
Testing of Matrices Multiplication Methods on Different Processors
Editor IJMTER
 
Survey on Malware Detection Techniques
Survey on Malware Detection TechniquesSurvey on Malware Detection Techniques
Survey on Malware Detection Techniques
Editor IJMTER
 
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICESURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
Editor IJMTER
 
SURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSSURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODS
Editor IJMTER
 
Survey: Multipath routing for Wireless Sensor Network
Survey: Multipath routing for Wireless Sensor NetworkSurvey: Multipath routing for Wireless Sensor Network
Survey: Multipath routing for Wireless Sensor Network
Editor IJMTER
 
Step up DC-DC Impedance source network based PMDC Motor Drive
Step up DC-DC Impedance source network based PMDC Motor DriveStep up DC-DC Impedance source network based PMDC Motor Drive
Step up DC-DC Impedance source network based PMDC Motor Drive
Editor IJMTER
 
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATIONSPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
Editor IJMTER
 
Software Quality Analysis Using Mutation Testing Scheme
Software Quality Analysis Using Mutation Testing SchemeSoftware Quality Analysis Using Mutation Testing Scheme
Software Quality Analysis Using Mutation Testing Scheme
Editor IJMTER
 
Software Defect Prediction Using Local and Global Analysis
Software Defect Prediction Using Local and Global AnalysisSoftware Defect Prediction Using Local and Global Analysis
Software Defect Prediction Using Local and Global Analysis
Editor IJMTER
 
Software Cost Estimation Using Clustering and Ranking Scheme
Software Cost Estimation Using Clustering and Ranking SchemeSoftware Cost Estimation Using Clustering and Ranking Scheme
Software Cost Estimation Using Clustering and Ranking Scheme
Editor IJMTER
 

More from Editor IJMTER (20)

A NEW DATA ENCODER AND DECODER SCHEME FOR NETWORK ON CHIP
A NEW DATA ENCODER AND DECODER SCHEME FOR  NETWORK ON CHIPA NEW DATA ENCODER AND DECODER SCHEME FOR  NETWORK ON CHIP
A NEW DATA ENCODER AND DECODER SCHEME FOR NETWORK ON CHIP
 
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
 
Analysis of VoIP Traffic in WiMAX Environment
Analysis of VoIP Traffic in WiMAX EnvironmentAnalysis of VoIP Traffic in WiMAX Environment
Analysis of VoIP Traffic in WiMAX Environment
 
A Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-DuplicationA Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-Duplication
 
Aging protocols that could incapacitate the Internet
Aging protocols that could incapacitate the InternetAging protocols that could incapacitate the Internet
Aging protocols that could incapacitate the Internet
 
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
 
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMESA CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
 
Sustainable Construction With Foam Concrete As A Green Green Building Material
Sustainable Construction With Foam Concrete As A Green Green Building MaterialSustainable Construction With Foam Concrete As A Green Green Building Material
Sustainable Construction With Foam Concrete As A Green Green Building Material
 
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TESTUSE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
 
Textual Data Partitioning with Relationship and Discriminative Analysis
Textual Data Partitioning with Relationship and Discriminative AnalysisTextual Data Partitioning with Relationship and Discriminative Analysis
Textual Data Partitioning with Relationship and Discriminative Analysis
 
Testing of Matrices Multiplication Methods on Different Processors
Testing of Matrices Multiplication Methods on Different ProcessorsTesting of Matrices Multiplication Methods on Different Processors
Testing of Matrices Multiplication Methods on Different Processors
 
Survey on Malware Detection Techniques
Survey on Malware Detection TechniquesSurvey on Malware Detection Techniques
Survey on Malware Detection Techniques
 
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICESURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
 
SURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSSURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODS
 
Survey: Multipath routing for Wireless Sensor Network
Survey: Multipath routing for Wireless Sensor NetworkSurvey: Multipath routing for Wireless Sensor Network
Survey: Multipath routing for Wireless Sensor Network
 
Step up DC-DC Impedance source network based PMDC Motor Drive
Step up DC-DC Impedance source network based PMDC Motor DriveStep up DC-DC Impedance source network based PMDC Motor Drive
Step up DC-DC Impedance source network based PMDC Motor Drive
 
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATIONSPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
 
Software Quality Analysis Using Mutation Testing Scheme
Software Quality Analysis Using Mutation Testing SchemeSoftware Quality Analysis Using Mutation Testing Scheme
Software Quality Analysis Using Mutation Testing Scheme
 
Software Defect Prediction Using Local and Global Analysis
Software Defect Prediction Using Local and Global AnalysisSoftware Defect Prediction Using Local and Global Analysis
Software Defect Prediction Using Local and Global Analysis
 
Software Cost Estimation Using Clustering and Ranking Scheme
Software Cost Estimation Using Clustering and Ranking SchemeSoftware Cost Estimation Using Clustering and Ranking Scheme
Software Cost Estimation Using Clustering and Ranking Scheme
 

Recently uploaded

Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
ShahidSultan24
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
Intella Parts
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
Kamal Acharya
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
PrashantGoswami42
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
Kamal Acharya
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
DuvanRamosGarzon1
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 

Recently uploaded (20)

Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 

Review of Image Segmentation Techniques based on Region Merging Approach

  • 1. Scientific Journal Impact Factor (SJIF): 1.711 International Journal of Modern Trends in Engineering and Research www.ijmter.com @IJMTER-2014, All rights Reserved 1 e-ISSN: 2349-9745 p-ISSN: 2393-8161 Review of Image Segmentation Techniques based on Region Merging Approach Shanu Sharma1 , Vivek Jain2 1,2 Computer Science & Engineering, SRCEM, Banmore, Morena,M.P Abstract - Image segmentation is an important task in computer vision and object recognition. Since fully automatic image segmentation is usually very hard for natural images, interactive schemes with a few simple user inputs are good solutions. In image segmentation the image is dividing into various segments for processing images. The complexity of image content is a bigger challenge for carrying out automatic image segmentation. On regions based scheme, the images are merged based on the similarity criteria depending upon comparing the mean values of both the regions to be merged. So, the similar regions are then merged and the dissimilar regions are merged together. Keywords - image segmentation, region-based methods, seeded region growing, clustering, region splitting. I. INTRODUCTION Image segmentation refers to the partition of an image into a set of regions that cover it. Main goal is to represent regions of meaningful areas of the image, such as the crops, urban areas, and forests of a satellite image. In other analysis, the regions of images might be set of border pixels and grouped into such structures as line segments and circular arc segments of 3D industrial objects. In image segmentation, an image is divided into a number of discrete regions such that the pixels have high similarity in each region and high contrast between regions; and regions may be depending as groups of pixels having both a border and a particular shape such as a circle or ellipse or polygon. Properties like gray-level, color, intensity, texture, depth or motion help to recognize similar regions and similarity of such properties, is used to construct groups of regions having a specific meaning. Segmentation is a valuable tool in many fields including industry, health care, image processing, remote sensing, traffic image, content based image, pattern recognition, video and computer vision etc. A particular type of image segmentation method can be found in application involving the detection, recognition, and measurement of objects in an image [1]. By understanding images, the information extracted from them can be used for other tasks for example, navigation of robots, extracting malign tissues from the body scans, detection of cancerous cells and identification of an airport from remote sensing data. Now there is need of a method. With the help of which, we can understand images and extract information or objects [3,5]. Image segmentation is the process of assigning a label to every pixel in an image such that pixels with the same label share certain visual characteristics. Other type of segmentation is color-based segmentation, which this paper interested in. Image segmentation has many application for example in
  • 2. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 2 medical imaging, to locate tumors, pathologies, measure tissue volumes, computer-guided surgery, diagnosis, treatment planning and study of anatomical structure or for locating objects in satellite images and it can be used for face and fingerprint recognition, traffic control systems and brake light detection and machine vision. Several general-purpose algorithms and techniques have been developed for image segmentation [6]. II. LITERATURE REVIEW Jifeng Ning [12] described the Efficient and effective image segmentation is an important task in computer vision and object recognition. Since fully automatic image segmentation is usually very hard for natural images, interactive schemes with a few simple user inputs are good solutions. A novel maximal-similarity based region merging mechanism is proposed to guide the merging process with the help of markers. An approach for color image segmentation is described Vijay Jumb [2]. In this method foreground objects are distinguished clearly from the background. As the HSV color space is similar to the way human eyes perceive color, hence in this method, first RGB image is converted to HSV (Hue, Saturation, Value) color model and V (Value) channel is extracted, as Value corresponds directly to the concept of intensity/brightness in the color basics section. Next an Otsu’s multi-thresholding is applied on V channel to get the best thresholds from the image. The result of Otsu’s multi-thresholding may consist of over segmented regions, hence K-means clustering is applied to merge the over segmented regions. Faten Abu Shmmala [6] described the color based image segmentation is done in two spaces. First in LAB color space and second in RGB space all that done using three versions of K-Means: K-Means, Weighted K-Means and Inverse Weighted K-Means clustering algorithms for different types of images: biological images (tissues and blood cells) and ordinary full colored images. One of the important technologies for image processing is image segmentation is described by Hydin John [7]. The complexity of image content is still a big challenge for carrying out automatic image segmentation. The user guidance can help to define the desired content to be extracted and thus reduce the ambiguities produced by the automatic methods. On this paper It discusses the various segmentation techniques for pixel based image segmentation, region based image segmentation, edge based image segmentation, and graph based image segmentation. The conceptual details discussed V Dey [9] of the techniques are explained and mathematical details are avoided for simplicity. Both broad and detailed categorizations of reviewed segmentation techniques are provided. The state of art research on each category is provided with emphasis on developed technologies and image properties used by them. Chen Jian, Yan Bin, Jiang Hua, Zeng Lei, Tong Li [14], proposed an improved maximal similarity based region merging technique. An improved algorithm of maximal similarity based region are used SLIC superpixels segmentation to obtain presegmented regions, using SLIC superpixles, it is easy to control the number of resegmentation regions. It also introduce the texture features differeces while rigion merging, so they can obtain the accuracy of similarity measurement.
  • 3. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 3 III. REGION-BASED SEGMENTATION METHODS It divides the entire image into sub regions depending on some rules like all the pixels in one region must have the same gray level. Region-based methods mainly rely on the assumption that is made clusters on their similarities. If the neighboring pixels within one region have similar value, then compare one pixel with its neighbors. If a similarity criterion is satisfied, the pixel can be set belong to the cluster as one or more of its neighbors. The selection of the similarity criterion is significant and the results are influenced by noise in all instances. In this section discussing the different region based segmentation methods. 3.1. Seeded Region Growing Method The seeded region growing method is one of the simplest region-based segmentation methods. It performs a segmentation of an image on the following steps: Step1: We start with a number of seed points, which have been clustered into n clusters and add new pixels slowly. Step2: Select the seed pixel and the selection depends on: • • The nature of the problem. • If targets need to be detected using infrared images for example, choose the brightest pixel. Step3: Check the neighboring pixels and add them to the region if they are similar to the seed. Step4: Repeat Step3 until all pixels in image have been allocated to a suitable cluster. for each of the newly added pixels; Step5: Stop if no more pixels can be added. Drawbacks: • The initial seed-points problem means the different sets of initial seed points cause different segmentation results. And it reduces the stability of segmentation results from the same image. • It is time-consuming because SRG requires lots of computation time.
  • 4. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 4 3.2. Unseed Region Growing Method Their distinction is that no explicit seed selection is necessary. In the segmentation procedure, the seeds could be generated automatically. So this method can perform fully automatic segmentation with the added benefit of robustness from being a region-based segmentation. The steps of unseed region growing method are as below. Step1: We start with a number of seed points, which have been clustered into n clusters and add new pixels slowly. Step2: Initializes the first cluster with a single image pixel and each image pixel classify into different clusters. Step3: Select a pixel from image and check it. Step4: Each pixel value assign to a cluster. Step5: After each pixel has been allocated to the cluster, the mean pixel value of the cluster must be updated. Step6: Iterate Step2 to 5 until all pixels have been assigned to a cluster. 3.3. Region Splitting and Merging The main issue of region splitting and merging is to distinguish the homogeneity of the image, Its work on two steps: first the image is split depending on some criterion and then it is merged. The whole image is initially considered as a single region then some measure of internal similarity is computed using standard deviation. If too much variety occurs then the image is split into regions using thresholding. This is repeated until no more splits are further possible. Quad tree is a common data structure used for splitting. Then comes the merging phase, where two regions are merged if they are adjacent and similar. Merging is repeated until no more further merging is possible. The major advantage of this technique is guaranteed connected regions. Quad trees are widely used in Geographic information system.
  • 5. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 5 Merits: a. Images can be split continuously according to required resolution. b. We can split the images also on the basis of classification. c. The merging approach is different from splitting approach. Demerits: a. It may produce the blocky segments. 3.4 Maximal Similarity based Region Merging: The image is to classify into homogeneous regions for merging. A region can be described in many aspects, such as the color, edge, texture, shape and size of the region. The region merging based segmentation, color histogram is more robust than the other feature descriptors. Maximal similarity based region merging approach work on following steps. Step1: Select an image, and classify on the basis of their features such as the color, edge, texture, shape and size of the region. Step2: Find the homogeneous regions from selected image. Step3: Mark the regions as object and background regions. Step4: Determine the similarity between the unmarked regions with the help of marked regions. Step5: Each similar region group put into different clusters. Step6: Repeat step 2 to 5, until scan the each pixel of an image. Step7: stop. IV.CONCLUSION There have been many image segmentation methods created and being created using many distinct approaches and algorithms but still it is very difficult to assess and compare the performance of these segmentation techniques. The initial seed points cause different segmentation results. And it reduces the stability of segmentation results from the same image. Seed point method is a time consuming process. With the Maximal Similarity based Region Merging rule, a two stage iterative merging algorithm was presented to gradually label each non-marker region as either object or background. The proposed scheme efficiently exploits the color similarity of the target object so that it is robust to the variations of input markers. In the context of region merging based segmentation, color histogram is more robust than the other feature descriptors. This is because the initially segmented small regions of the desired object often vary a lot in size and shape, while the colors of different regions from the same object will have high similarity.
  • 6. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 02, Issue 01, [January - 2015] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 6 BIBLIOGRAPHY Vivek Kumar Jain is an Assistant Professor of Department of Computer Science & Engineering, SRCEM, Banmore, Morena,M.P., India. He received the bachelor’s degree in Computer Science & Engineering from SRCEM, Banmore, Morena, M.P., India, in 2006 and M.Tech. Degree in Software System from SATI, Vidisha, M.P., in 2012 respectively. His interests include data mining and image processing. He is currently working on image segmentation. Shanu Sharma is a M.Tech.student in Department of Computer Science & Engineering, SRCEM, Banmore, Morena,M.P., India. She received the bachelor’s degree in Computer Science & Engineering from BBM College of Technology and management, Gwalior, M.P., India, in 2010. Her interests include data mining and image processing. She is currently working on image segmentation. REFRENCES [1] Vijay Jumb, Mandar Sohani, Avinash Shrivas, “ Color Image Segmentation Using K-Means Clustering and Otsu’s Adaptive Thresholding”, (IJITEE) ISSN: 2278-3075, Volume-3, Issue-9, February 2014. [2] Sameena Banu, Apparao Giduturi, Syed Abdul Sattar, “Interactive Image Segmentation and Edge Detection of Medical Images”, ISSN (print): 2249-7277 ISSN (online): 2277-7970) Volume-3 Number-4 Issue-13 December-2013. [3] Nehaverma, Deepak Sharma, “Advanced Maximal Similarity Based Region Merging By User Interactions”, IJERA), ISSN: 2248-9622, Vol. 3, Issue 4, Jul-Aug 2013, pp.681-688. [4] H.P. Narkhede, “ Review of Image Segmentation Techniques”, (IJISME) ISSN: 2319-6386, Volume-1, Issue-8, July 2013. [5] G.SUMANA, G.ANJAN BABU, “An Efficient Interactive Image Segmentation by Maximal Similarity Based Region Merging With Artificial Neural Networks for MRI Medical Images”, IJESR , Vol 04, Special Issue 01, 2013, ACICE-2013, ISSN: 2230-8504; e-ISSN-2230-8512. [6] Faten Abu Shmmala, Wesam Ashour, “Color Based Image Segmentation using Different Versions of K-Means in two Spaces”, Global Advanced Research Journal of Engineering, Technology and Innovation (ISSN: 2315-5124) Vol. 1(9) pp. 030-041, January, 2013 [7] Hydin John, J Anitha, “A Study of Image Segmentation Approaches”, IJARECE, ISSN: 2278–909X, Volume 1, Issue 4, October 2012. [8] Banudevareddy. B and Prasanna Kumari. P, “Similarity Based Region Merging Interactive Image Segmentation”, International Journal of Information Systems and Computer Sciences, Volume 1, No.1, September - October 2012. [9] S.Dhanalakshmi, T.Ravichandran, “ A New Method for Image Segmentation”, IJARCSSE Volume 2, Issue 9, September 2012 ISSN: 2277 128X. [10] V. Dey, Y. Zhang, M. Zhong, “A REVIEW ON IMAGE SEGMENTATION TECHNIQUES WITH REMOTE SENSING PERSPECTIVE”, Austria, July 5–7, 2010, IAPRS, Vol. XXXVIII, Part 7A. [11] Nikita Sharma, Mahendra Mishra, Manish Shrivastava, “COLOUR IMAGE SEGMENTATION TECHNIQUES AND ISSUES: AN APPROACH”, International Journal of Scientific & Technology Research Volume 1, Issue 4, May 2012, ISSN 2277-8616. [12] Salem Saleh Al-amri1, N.V. Kalyankar2 and Khamitkar S.D, “Image Segmentation by Using Thershod Techniques”, JOURNAL OF COMPUTING, VOLUME 2, ISSUE 5, MAY 2010, ISSN 2151-9617. [13] Jifeng Ning, Lei Zhang, David Zhang, Chengke Wu,” Interactive image segmentation by maximal similarity based region merging”, 2009 Elsevier. [14]Chen Jian, Yan Bin, Jiang Hua, Zeng Lei, Tong Li, “Interactive image segmentation by improved maximal similarity based region merging”, ISSN: 978-1-4673-5887-3/13/, 2013 IEEE.