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

PDF
A comparison of image segmentation techniques, otsu and watershed for x ray i...
PDF
Image Segmentation (Digital Image Processing)
PPTX
IMAGE SEGMENTATION.
PPT
Image segmentation
PPTX
IMAGE SEGMENTATION TECHNIQUES
PDF
IMAGE SEGMENTATION BY USING THRESHOLDING TECHNIQUES FOR MEDICAL IMAGES
PPTX
Image segmentation using wvlt trnsfrmtn and fuzzy logic. ppt
PPT
Im seg04
A comparison of image segmentation techniques, otsu and watershed for x ray i...
Image Segmentation (Digital Image Processing)
IMAGE SEGMENTATION.
Image segmentation
IMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION BY USING THRESHOLDING TECHNIQUES FOR MEDICAL IMAGES
Image segmentation using wvlt trnsfrmtn and fuzzy logic. ppt
Im seg04

What's hot (20)

PDF
Digital image classification
PDF
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
PPSX
Image segmentation 2
PPTX
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
PDF
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
PPT
Image pre processing - local processing
PPTX
Video Segmentation
PPT
Image segmentation ajal
PPTX
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
PPTX
Otsu binarization
PPT
Segmentation
PPTX
Watershed
PPTX
Image segmentation
PPSX
Edge Detection and Segmentation
PPTX
Segmentation Techniques -I
PDF
Digital Image Processing: Image Segmentation
PPT
Presentation on deformable model for medical image segmentation
PPT
Image segmentation
PPTX
various methods for image segmentation
PDF
Region-based Semi-supervised Clustering Image Segmentation
Digital image classification
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image segmentation 2
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project PPT
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
Image pre processing - local processing
Video Segmentation
Image segmentation ajal
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Otsu binarization
Segmentation
Watershed
Image segmentation
Edge Detection and Segmentation
Segmentation Techniques -I
Digital Image Processing: Image Segmentation
Presentation on deformable model for medical image segmentation
Image segmentation
various methods for image segmentation
Region-based Semi-supervised Clustering Image Segmentation
Ad

Viewers also liked (12)

PDF
Image segmentation
PDF
A Literature Review on Iris Segmentation Techniques for Iris Recognition Systems
PDF
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
PPTX
Segmentation Techniques -II
PPTX
Automatic Blood Vessels Segmentation of Retinal Images
PPTX
Image segmentation
PPTX
Image segmentation
PPTX
CANCER CELL DETECTION USING DIGITAL IMAGE PROCESSING
PPTX
Edge Detection algorithm and code
PPT
Image segmentation ppt
PPTX
Edge detection
PDF
Paper id 212014108
Image segmentation
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...
Segmentation Techniques -II
Automatic Blood Vessels Segmentation of Retinal Images
Image segmentation
Image segmentation
CANCER CELL DETECTION USING DIGITAL IMAGE PROCESSING
Edge Detection algorithm and code
Image segmentation ppt
Edge detection
Paper id 212014108
Ad

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

PDF
A novel predicate for active region merging in automatic image segmentation
PDF
A novel predicate for active region merging in automatic image segmentation
PDF
Different Image Segmentation Techniques for Dental Image Extraction
PDF
G04544346
PDF
Color Image Segmentation Technique Using “Natural Grouping” of Pixels
PDF
Dk34681688
PDF
IRJET- Image Segmentation Techniques: A Review
PDF
Image Segmentation Using Pairwise Correlation Clustering
PDF
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHM
PDF
International Journal of Engineering Research and Development (IJERD)
PDF
93202101
PPTX
Region based segmentation
PDF
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
PDF
A Review of different method of Medical Image Segmentation
PDF
Fd36957962
PDF
AUTOMATIC DOMINANT REGION SEGMENTATION FOR NATURAL IMAGES
PDF
Automatic dominant region segmentation for natural images
PDF
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
PDF
L045066671
PDF
A Survey on Image Segmentation and its Applications in Image Processing
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentation
Different Image Segmentation Techniques for Dental Image Extraction
G04544346
Color Image Segmentation Technique Using “Natural Grouping” of Pixels
Dk34681688
IRJET- Image Segmentation Techniques: A Review
Image Segmentation Using Pairwise Correlation Clustering
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHM
International Journal of Engineering Research and Development (IJERD)
93202101
Region based segmentation
COLOUR BASED IMAGE SEGMENTATION USING HYBRID KMEANS WITH WATERSHED SEGMENTATION
A Review of different method of Medical Image Segmentation
Fd36957962
AUTOMATIC DOMINANT REGION SEGMENTATION FOR NATURAL IMAGES
Automatic dominant region segmentation for natural images
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
L045066671
A Survey on Image Segmentation and its Applications in Image Processing

More from Editor IJMTER (20)

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

Recently uploaded (20)

PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
R24 SURVEYING LAB MANUAL for civil enggi
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
UNIT 4 Total Quality Management .pptx
DOCX
573137875-Attendance-Management-System-original
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PDF
PPT on Performance Review to get promotions
PPTX
Welding lecture in detail for understanding
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
Well-logging-methods_new................
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
CH1 Production IntroductoryConcepts.pptx
R24 SURVEYING LAB MANUAL for civil enggi
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Operating System & Kernel Study Guide-1 - converted.pdf
UNIT 4 Total Quality Management .pptx
573137875-Attendance-Management-System-original
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Foundation to blockchain - A guide to Blockchain Tech
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
CYBER-CRIMES AND SECURITY A guide to understanding
PPT on Performance Review to get promotions
Welding lecture in detail for understanding
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Well-logging-methods_new................

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.