SlideShare une entreprise Scribd logo
1  sur  25
Segmentation



           Objective:
Student will learn on how to find
regions that represent objects or
   meaningful part of objects.


                                    1
   Download di http://rumah-belajar.org




                                           2
Introduction
   Segmentation is generally the first stage in any
    attempt to analyze or interpret an image
    automatically.
   Image segmentation is important in many computer
    vision and image processing applications.
   Segmentation partitions an image into distinct
    regions that are meant to correlate strongly with
    objects or features of interest in the image.
   Segmentation can also be regarded as a process of
    grouping together pixels that have similar attributes.
   For segmentation to be useful, the regions or groups
    of pixels that we generate should be meaningful.




                                                        3
   Segmentation bridges the gap between
    low-level image processing, which
    concerns itself with manipulation of pixel
    grey level or color to correct defects or
    enhance certain characteristics of the
    image, and high-level processing, which
    involves the manipulation and analysis of
    groups of pixel that represent particular
    features of interest.



                                           4
   Some kind of segmentation technique
    will be found in any application
    involving the detection, recognition and
    measurement of objects in image.
   Examples
       Industrial inspection
       Optical character recognition (OCR)
       Tracking of objects in a sequence of
        images
       Classification of terrains visible in satellite
        images
       Detection and measurement of bone,
        tissue, etc., in medical images.
                                                      5
   The goal of image segmentation is to
    find regions that represent objects or
    meaningful parts of objects.
   Division of the image into regions
    corresponding to objects of interest is
    necessary before any processing can be
    done at a level higher that that of the
    pixel.
   Identifying real objects, pseudo objects
    and shadows or actually finding
    anything of interest within the image
    requires some form of segmentation.

                                          6
   The role of segmentation is crucial in most tasks requiring
    image analysis.
   The success or failure of the task is often a direct
    consequence of the success or failure of segmentation.
   Segmentation techniques can be classified as either
    contextual or non-contextual.
   Non-contextual technique ignore the relationships that
    exist between features in an image.
       Pixels are simply grouped together on the basis of some global
        attribute, such as grey level.
   Contextual technique exploit the relationships between
    grey image features.
       Group together pixels that have similar grey levels and are close to
        one another.


                                                                         7
Overview
   Image segmentation methods will look for
    objects that either have some measure of
    homogeneity within themselves or have some
    measure of contrast with the objects on their
    border.
   Most image segmentation algorithm are
    modifications, extensions or combinations of
    these two basic concepts.


                                               8
   The homogeneity and contrast
    measures can include features such as
    grey level, color and texture.
   After performed some preliminary
    segmentation, we may incorporate
    higher-level object properties, such as
    perimeter and shape, into the
    segmentation process.
   The major problems are a result of
    noise in the image and digitization of a
    continuous image.

                                           9
   Noise is typically caused by the camera,
    the lenses, the lighting, or the signal
    path and can be reduced by the use of
    the pre-processing methods.
   Spatial digitization can cause problems
    regarding connectivity of objects.
   These problems can be resolved with
    careful connectivity definitions and
    heuristics applicable to the specific
    domain.


                                         10
Connectivity
   Connectivity refers to the way in which we
    define an object.
   After we have segmented an image, which
    segments should be connected to form an
    object?
   Or at lower level, when searching the image
    for homogeneous regions, how do we define
    which pixels are connected?


                                             11
    We can define connectivity in three
     different ways:
    1.   4-connectivity
    2.   8-connectivity, and
    3.   6-connectivity




                               Which is which?




                                             12
6-connectivity NW/SE         6-connectivity NE/SW

•Which definition is chosen depends on the application,
but the key to avoiding problems is to be consistent.



                                                          13
        We can divide image segmentation
         techniques into 3 main categories:
    1.     Region growing and shrinking
    2.     Clustering methods, and
    3.     Boundary detection.
        The region growing and shrinking methods
         use the row and column or x and y based
         image space.
        Clustering techniques can be applied to any
         domain (spatial domain, color, space,
         feature space, etc.)
        The boundary detection methods are
         extensions of the edge detection
         techniques.

                                                 14
Region Growing and Shrinking
   Segment the image into regions by
    operating principally in rc/xy-based
    image space.
   Some are local, others are global, and
    combine split and merge.




                                         15
   Split and merge technique 
     1.   Define a homogeneity test. A measurement
          which incorporate brightness, color, texture,
          or other application-specific information, and
          determining a criterion the region must meet
          to pass the homogeneity test.
     2.   Split the image into equally sized regions.
     3.   It the homogeneity test is passed for a
          region, then merge is attempted with its
          neighbour (s). If the criterion is not met, the
          region is split.
     4.   Continue this process until all regions pass
          the homogeneity test.
   There are many variations of this algorithm.

                                                      16
   The user defined homogeneity test is
    largely application dependent.
   The general idea is to look for features
    that will be similar within an object and
    different from the surrounding objects.
   In the simplest case  use grey level
    as feature of interest.
   Could use the grey level variance as
    homogeneity measure and define a
    homogeneity test that required the grey
    level variance within a region to be less
    than some threshold.

                                          17
   We can define grey-level variance as 


            1                               2
                           f ( x, y ) I
          N 1 ( x, y )   region
                          1
          where I                       f ( x, y )
                          N ( x, y )   region


•The variance is basically a measure of how
widely the grey level within a region vary.
•Higher order statistic can be used for features
such as texture.


                                                     18
Clustering Technique
   Clustering techniques are image segmentation
    methods which individual elements are placed into
    groups based on some measure of similarity within
    the groups.
   The simplest method is to divide the space of interest
    into regions by selecting the centre or median along
    each dimension and splitting it.
   Can be done iteratively until the space is divided into
    specific number of regions needed.  used in the
    SCT/Center and PCT/Median segmentation
    algorithms.
    will be effective only if the space and the entire
    algorithm is designed intelligently.

                                                       19
        Recursive region splitting is a clustering
         method that has become a standard
         technique.
        One of the 1st algorithms based on recursive
         region splitting
    1.     Consider the entire image as one region and
           computer histograms for each component of
           interest (red, green and blue for a color image).
    2.     Apply a peak finding test to each histogram.
           Select the best peak and put thresholds on
           either side of the peak. Segment the image into
           two regions based on this peak.
    3.     Smooth the binary threshold image so that only
           a single connected sub-region is left.
    4.     Repeat step 1-3 for each region until no new
           sub-regions can be created  no histograms
           have significant peaks.

                                                         20
2 threshold are selected, one on each side of the best
peak. The image is then split into two regions. Region 1
corresponds to those pixels with feature values between
the selected thresholds. Region 2 consists of those pixels
with feature values outside the threshold.              21
Many of the parameters of this algorithm are application
specific. What peak-finding test do we use? And what is
a significant peak?                                  22
    Other Clustering Technique
    1.   SCT/Center segmentation, and
    2.   PCT/Median segmentation.




                                        23
24
Boundary Detection
   Performed by finding
    the boundaries between
    object defining the
    objects.
   Other segmentation
    technique include
    Combined approaches
    and Morphological
    Filtering.




                             25

Contenu connexe

Tendances

Image enhancement in the spatial domain1
Image enhancement in the spatial domain1Image enhancement in the spatial domain1
Image enhancement in the spatial domain1shabanam tamboli
 
Hough Transform By Md.Nazmul Islam
Hough Transform By Md.Nazmul IslamHough Transform By Md.Nazmul Islam
Hough Transform By Md.Nazmul IslamNazmul Islam
 
Features image processing and Extaction
Features image processing and ExtactionFeatures image processing and Extaction
Features image processing and ExtactionAli A Jalil
 
Compression: Images (JPEG)
Compression: Images (JPEG)Compression: Images (JPEG)
Compression: Images (JPEG)danishrafiq
 
Image segmentation
Image segmentationImage segmentation
Image segmentationDeepak Kumar
 
Chapter 6 color image processing
Chapter 6 color image processingChapter 6 color image processing
Chapter 6 color image processingasodariyabhavesh
 
Image enhancement techniques
Image enhancement techniques Image enhancement techniques
Image enhancement techniques Arshad khan
 
Elements of visual perception
Elements of visual perceptionElements of visual perception
Elements of visual perceptionDr INBAMALAR T M
 
Region filling
Region fillingRegion filling
Region fillinghetvi naik
 
Image processing second unit Notes
Image processing second unit NotesImage processing second unit Notes
Image processing second unit NotesAAKANKSHA JAIN
 
Digital image processing
Digital image processingDigital image processing
Digital image processingtushar05
 
From Image Processing To Computer Vision
From Image Processing To Computer VisionFrom Image Processing To Computer Vision
From Image Processing To Computer VisionJoud Khattab
 
Region based segmentation
Region based segmentationRegion based segmentation
Region based segmentationramya marichamy
 
Image Processing: Spatial filters
Image Processing: Spatial filtersImage Processing: Spatial filters
Image Processing: Spatial filtersA B Shinde
 
Chapter 6 Image Processing: Image Enhancement
Chapter 6 Image Processing: Image EnhancementChapter 6 Image Processing: Image Enhancement
Chapter 6 Image Processing: Image EnhancementVarun Ojha
 

Tendances (20)

Image enhancement in the spatial domain1
Image enhancement in the spatial domain1Image enhancement in the spatial domain1
Image enhancement in the spatial domain1
 
Hough Transform By Md.Nazmul Islam
Hough Transform By Md.Nazmul IslamHough Transform By Md.Nazmul Islam
Hough Transform By Md.Nazmul Islam
 
Features image processing and Extaction
Features image processing and ExtactionFeatures image processing and Extaction
Features image processing and Extaction
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Compression: Images (JPEG)
Compression: Images (JPEG)Compression: Images (JPEG)
Compression: Images (JPEG)
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Edge Detection
Edge Detection Edge Detection
Edge Detection
 
Chapter 6 color image processing
Chapter 6 color image processingChapter 6 color image processing
Chapter 6 color image processing
 
Image enhancement techniques
Image enhancement techniques Image enhancement techniques
Image enhancement techniques
 
Elements of visual perception
Elements of visual perceptionElements of visual perception
Elements of visual perception
 
Region filling
Region fillingRegion filling
Region filling
 
Image processing second unit Notes
Image processing second unit NotesImage processing second unit Notes
Image processing second unit Notes
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
 
From Image Processing To Computer Vision
From Image Processing To Computer VisionFrom Image Processing To Computer Vision
From Image Processing To Computer Vision
 
Region based segmentation
Region based segmentationRegion based segmentation
Region based segmentation
 
Image Processing: Spatial filters
Image Processing: Spatial filtersImage Processing: Spatial filters
Image Processing: Spatial filters
 
Chapter 6 Image Processing: Image Enhancement
Chapter 6 Image Processing: Image EnhancementChapter 6 Image Processing: Image Enhancement
Chapter 6 Image Processing: Image Enhancement
 

En vedette

Mikrokontroler pertemuan 2
Mikrokontroler pertemuan 2Mikrokontroler pertemuan 2
Mikrokontroler pertemuan 2Rumah Belajar
 
Image segmentation 3 morphology
Image segmentation 3 morphologyImage segmentation 3 morphology
Image segmentation 3 morphologyRumah Belajar
 
Mikrokontroler pertemuan 8
Mikrokontroler pertemuan 8Mikrokontroler pertemuan 8
Mikrokontroler pertemuan 8Rumah Belajar
 
Mikrokontroler pertemuan 7
Mikrokontroler pertemuan 7Mikrokontroler pertemuan 7
Mikrokontroler pertemuan 7Rumah Belajar
 
Mikrokontroler pertemuan 4
Mikrokontroler pertemuan 4Mikrokontroler pertemuan 4
Mikrokontroler pertemuan 4Rumah Belajar
 
Mikrokontroler pertemuan 3
Mikrokontroler pertemuan 3Mikrokontroler pertemuan 3
Mikrokontroler pertemuan 3Rumah Belajar
 
Mikrokontroler pertemuan 5
Mikrokontroler pertemuan 5Mikrokontroler pertemuan 5
Mikrokontroler pertemuan 5Rumah Belajar
 
02 2d systems matrix
02 2d systems matrix02 2d systems matrix
02 2d systems matrixRumah Belajar
 
01 introduction image processing analysis
01 introduction image processing analysis01 introduction image processing analysis
01 introduction image processing analysisRumah Belajar
 
Bab vi. perencanaan trayektori (trajectory planning)
Bab vi. perencanaan trayektori (trajectory planning)Bab vi. perencanaan trayektori (trajectory planning)
Bab vi. perencanaan trayektori (trajectory planning)Rumah Belajar
 
Bab 03 load analysis
Bab 03 load analysisBab 03 load analysis
Bab 03 load analysisRumah Belajar
 
Mth263 lecture 5
Mth263 lecture 5Mth263 lecture 5
Mth263 lecture 5tariq88
 
Bab 07 poros dan aksesoriny
Bab 07 poros dan aksesorinyBab 07 poros dan aksesoriny
Bab 07 poros dan aksesorinyRumah Belajar
 
Mikrokontroler dan Antar Muka (14)
Mikrokontroler dan Antar Muka (14)Mikrokontroler dan Antar Muka (14)
Mikrokontroler dan Antar Muka (14)jayamartha
 
15. ide pata dan sata
15. ide pata dan sata15. ide pata dan sata
15. ide pata dan sataRumah Belajar
 
Image Segmentation
Image SegmentationImage Segmentation
Image Segmentationashek1520
 
Mikrokontroler pertemuan 6
Mikrokontroler pertemuan 6Mikrokontroler pertemuan 6
Mikrokontroler pertemuan 6Rumah Belajar
 
06 object measurement
06 object measurement06 object measurement
06 object measurementRumah Belajar
 
Mikrokontroler pertemuan 1
Mikrokontroler pertemuan 1Mikrokontroler pertemuan 1
Mikrokontroler pertemuan 1Rumah Belajar
 

En vedette (20)

Mikrokontroler pertemuan 2
Mikrokontroler pertemuan 2Mikrokontroler pertemuan 2
Mikrokontroler pertemuan 2
 
Image segmentation 3 morphology
Image segmentation 3 morphologyImage segmentation 3 morphology
Image segmentation 3 morphology
 
Mikrokontroler pertemuan 8
Mikrokontroler pertemuan 8Mikrokontroler pertemuan 8
Mikrokontroler pertemuan 8
 
Mikrokontroler pertemuan 7
Mikrokontroler pertemuan 7Mikrokontroler pertemuan 7
Mikrokontroler pertemuan 7
 
Mikrokontroler pertemuan 4
Mikrokontroler pertemuan 4Mikrokontroler pertemuan 4
Mikrokontroler pertemuan 4
 
Mikrokontroler pertemuan 3
Mikrokontroler pertemuan 3Mikrokontroler pertemuan 3
Mikrokontroler pertemuan 3
 
Mikrokontroler pertemuan 5
Mikrokontroler pertemuan 5Mikrokontroler pertemuan 5
Mikrokontroler pertemuan 5
 
point processing
point processingpoint processing
point processing
 
02 2d systems matrix
02 2d systems matrix02 2d systems matrix
02 2d systems matrix
 
01 introduction image processing analysis
01 introduction image processing analysis01 introduction image processing analysis
01 introduction image processing analysis
 
Bab vi. perencanaan trayektori (trajectory planning)
Bab vi. perencanaan trayektori (trajectory planning)Bab vi. perencanaan trayektori (trajectory planning)
Bab vi. perencanaan trayektori (trajectory planning)
 
Bab 03 load analysis
Bab 03 load analysisBab 03 load analysis
Bab 03 load analysis
 
Mth263 lecture 5
Mth263 lecture 5Mth263 lecture 5
Mth263 lecture 5
 
Bab 07 poros dan aksesoriny
Bab 07 poros dan aksesorinyBab 07 poros dan aksesoriny
Bab 07 poros dan aksesoriny
 
Mikrokontroler dan Antar Muka (14)
Mikrokontroler dan Antar Muka (14)Mikrokontroler dan Antar Muka (14)
Mikrokontroler dan Antar Muka (14)
 
15. ide pata dan sata
15. ide pata dan sata15. ide pata dan sata
15. ide pata dan sata
 
Image Segmentation
Image SegmentationImage Segmentation
Image Segmentation
 
Mikrokontroler pertemuan 6
Mikrokontroler pertemuan 6Mikrokontroler pertemuan 6
Mikrokontroler pertemuan 6
 
06 object measurement
06 object measurement06 object measurement
06 object measurement
 
Mikrokontroler pertemuan 1
Mikrokontroler pertemuan 1Mikrokontroler pertemuan 1
Mikrokontroler pertemuan 1
 

Similaire à Image segmentation 2

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 ImagesIOSR Journals
 
Review of Image Segmentation Techniques based on Region Merging Approach
Review of Image Segmentation Techniques based on Region Merging ApproachReview of Image Segmentation Techniques based on Region Merging Approach
Review of Image Segmentation Techniques based on Region Merging ApproachEditor IJMTER
 
TYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSING
TYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSINGTYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSING
TYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSINGKamana Tripathi
 
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
 
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 Segmentationinventionjournals
 
SIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdfSIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdfDrAhmedElngar
 
Survey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation TechniquesSurvey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation TechniquesEditor IJMTER
 
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...sipij
 
Importance of Mean Shift in Remote Sensing Segmentation
Importance of Mean Shift in Remote Sensing SegmentationImportance of Mean Shift in Remote Sensing Segmentation
Importance of Mean Shift in Remote Sensing SegmentationIOSR Journals
 
imagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdfimagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdfsatyanarayana242612
 
imagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdfimagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdfsatyanarayana242612
 
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier ExposurePerformance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposureiosrjce
 
Face detection ppt
Face detection pptFace detection ppt
Face detection pptPooja R
 
A Novel Edge Detection Technique for Image Classification and Analysis
A Novel Edge Detection Technique for Image Classification and AnalysisA Novel Edge Detection Technique for Image Classification and Analysis
A Novel Edge Detection Technique for Image Classification and AnalysisIOSR Journals
 
Image Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation ClusteringImage Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation ClusteringIJERA Editor
 

Similaire à Image segmentation 2 (20)

Q0460398103
Q0460398103Q0460398103
Q0460398103
 
J017426467
J017426467J017426467
J017426467
 
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
 
Review of Image Segmentation Techniques based on Region Merging Approach
Review of Image Segmentation Techniques based on Region Merging ApproachReview of Image Segmentation Techniques based on Region Merging Approach
Review of Image Segmentation Techniques based on Region Merging Approach
 
TYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSING
TYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSINGTYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSING
TYBSC (CS) SEM 6- DIGITAL IMAGE PROCESSING
 
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...
 
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
 
SIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdfSIRG-BSU_3_used-important.pdf
SIRG-BSU_3_used-important.pdf
 
Survey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation TechniquesSurvey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation Techniques
 
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
Feature Extraction for Image Classification and Analysis with Ant Colony Opti...
 
Importance of Mean Shift in Remote Sensing Segmentation
Importance of Mean Shift in Remote Sensing SegmentationImportance of Mean Shift in Remote Sensing Segmentation
Importance of Mean Shift in Remote Sensing Segmentation
 
imagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdfimagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdf
 
imagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdfimagesegmentationppt-120409061123-phpapp01 (2).pdf
imagesegmentationppt-120409061123-phpapp01 (2).pdf
 
Image segmentation using wvlt trnsfrmtn and fuzzy logic. ppt
Image segmentation using wvlt trnsfrmtn and fuzzy logic. pptImage segmentation using wvlt trnsfrmtn and fuzzy logic. ppt
Image segmentation using wvlt trnsfrmtn and fuzzy logic. ppt
 
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier ExposurePerformance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
Performance of Efficient Closed-Form Solution to Comprehensive Frontier Exposure
 
I010634450
I010634450I010634450
I010634450
 
Ea4301770773
Ea4301770773Ea4301770773
Ea4301770773
 
Face detection ppt
Face detection pptFace detection ppt
Face detection ppt
 
A Novel Edge Detection Technique for Image Classification and Analysis
A Novel Edge Detection Technique for Image Classification and AnalysisA Novel Edge Detection Technique for Image Classification and Analysis
A Novel Edge Detection Technique for Image Classification and Analysis
 
Image Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation ClusteringImage Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation Clustering
 

Plus de Rumah Belajar

04 image enhancement edge detection
04 image enhancement edge detection04 image enhancement edge detection
04 image enhancement edge detectionRumah Belajar
 
Bab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasanBab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasanRumah Belajar
 
Bab 10 spring arif hary
Bab 10 spring  arif hary Bab 10 spring  arif hary
Bab 10 spring arif hary Rumah Belajar
 
Bab 06 kriteria kegagalan lelah
Bab 06 kriteria kegagalan lelahBab 06 kriteria kegagalan lelah
Bab 06 kriteria kegagalan lelahRumah Belajar
 
Bab 09 kekuatan sambungan las
Bab 09 kekuatan sambungan lasBab 09 kekuatan sambungan las
Bab 09 kekuatan sambungan lasRumah Belajar
 
Bab 08 screws, fasteners and connection syarif
Bab 08 screws, fasteners and connection  syarif Bab 08 screws, fasteners and connection  syarif
Bab 08 screws, fasteners and connection syarif Rumah Belajar
 
Bab 05 kriteria kegagalan 1
Bab 05 kriteria kegagalan 1Bab 05 kriteria kegagalan 1
Bab 05 kriteria kegagalan 1Rumah Belajar
 
Bab 04 tegangan regangan defleksi
Bab 04 tegangan regangan defleksiBab 04 tegangan regangan defleksi
Bab 04 tegangan regangan defleksiRumah Belajar
 
Bab 02 material dan proses
Bab 02 material dan prosesBab 02 material dan proses
Bab 02 material dan prosesRumah Belajar
 
Bab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasanBab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasanRumah Belajar
 
13. peripheral component interconnect (pci)
13. peripheral component interconnect (pci)13. peripheral component interconnect (pci)
13. peripheral component interconnect (pci)Rumah Belajar
 
11. motherboard (interface)
11. motherboard (interface)11. motherboard (interface)
11. motherboard (interface)Rumah Belajar
 

Plus de Rumah Belajar (14)

03 image transform
03 image transform03 image transform
03 image transform
 
04 image enhancement edge detection
04 image enhancement edge detection04 image enhancement edge detection
04 image enhancement edge detection
 
Bab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasanBab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasan
 
Bab 10 spring arif hary
Bab 10 spring  arif hary Bab 10 spring  arif hary
Bab 10 spring arif hary
 
Bab 06 kriteria kegagalan lelah
Bab 06 kriteria kegagalan lelahBab 06 kriteria kegagalan lelah
Bab 06 kriteria kegagalan lelah
 
Bab 09 kekuatan sambungan las
Bab 09 kekuatan sambungan lasBab 09 kekuatan sambungan las
Bab 09 kekuatan sambungan las
 
Bab 08 screws, fasteners and connection syarif
Bab 08 screws, fasteners and connection  syarif Bab 08 screws, fasteners and connection  syarif
Bab 08 screws, fasteners and connection syarif
 
Bab 05 kriteria kegagalan 1
Bab 05 kriteria kegagalan 1Bab 05 kriteria kegagalan 1
Bab 05 kriteria kegagalan 1
 
Bab 04 tegangan regangan defleksi
Bab 04 tegangan regangan defleksiBab 04 tegangan regangan defleksi
Bab 04 tegangan regangan defleksi
 
Bab 02 material dan proses
Bab 02 material dan prosesBab 02 material dan proses
Bab 02 material dan proses
 
Bab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasanBab 11 bantalan dan sistem pelumasan
Bab 11 bantalan dan sistem pelumasan
 
13. peripheral component interconnect (pci)
13. peripheral component interconnect (pci)13. peripheral component interconnect (pci)
13. peripheral component interconnect (pci)
 
12. komunikasi data
12. komunikasi data12. komunikasi data
12. komunikasi data
 
11. motherboard (interface)
11. motherboard (interface)11. motherboard (interface)
11. motherboard (interface)
 

Dernier

USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 

Dernier (20)

USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 

Image segmentation 2

  • 1. Segmentation Objective: Student will learn on how to find regions that represent objects or meaningful part of objects. 1
  • 2. Download di http://rumah-belajar.org 2
  • 3. Introduction  Segmentation is generally the first stage in any attempt to analyze or interpret an image automatically.  Image segmentation is important in many computer vision and image processing applications.  Segmentation partitions an image into distinct regions that are meant to correlate strongly with objects or features of interest in the image.  Segmentation can also be regarded as a process of grouping together pixels that have similar attributes.  For segmentation to be useful, the regions or groups of pixels that we generate should be meaningful. 3
  • 4. Segmentation bridges the gap between low-level image processing, which concerns itself with manipulation of pixel grey level or color to correct defects or enhance certain characteristics of the image, and high-level processing, which involves the manipulation and analysis of groups of pixel that represent particular features of interest. 4
  • 5. Some kind of segmentation technique will be found in any application involving the detection, recognition and measurement of objects in image.  Examples  Industrial inspection  Optical character recognition (OCR)  Tracking of objects in a sequence of images  Classification of terrains visible in satellite images  Detection and measurement of bone, tissue, etc., in medical images. 5
  • 6. The goal of image segmentation is to find regions that represent objects or meaningful parts of objects.  Division of the image into regions corresponding to objects of interest is necessary before any processing can be done at a level higher that that of the pixel.  Identifying real objects, pseudo objects and shadows or actually finding anything of interest within the image requires some form of segmentation. 6
  • 7. The role of segmentation is crucial in most tasks requiring image analysis.  The success or failure of the task is often a direct consequence of the success or failure of segmentation.  Segmentation techniques can be classified as either contextual or non-contextual.  Non-contextual technique ignore the relationships that exist between features in an image.  Pixels are simply grouped together on the basis of some global attribute, such as grey level.  Contextual technique exploit the relationships between grey image features.  Group together pixels that have similar grey levels and are close to one another. 7
  • 8. Overview  Image segmentation methods will look for objects that either have some measure of homogeneity within themselves or have some measure of contrast with the objects on their border.  Most image segmentation algorithm are modifications, extensions or combinations of these two basic concepts. 8
  • 9. The homogeneity and contrast measures can include features such as grey level, color and texture.  After performed some preliminary segmentation, we may incorporate higher-level object properties, such as perimeter and shape, into the segmentation process.  The major problems are a result of noise in the image and digitization of a continuous image. 9
  • 10. Noise is typically caused by the camera, the lenses, the lighting, or the signal path and can be reduced by the use of the pre-processing methods.  Spatial digitization can cause problems regarding connectivity of objects.  These problems can be resolved with careful connectivity definitions and heuristics applicable to the specific domain. 10
  • 11. Connectivity  Connectivity refers to the way in which we define an object.  After we have segmented an image, which segments should be connected to form an object?  Or at lower level, when searching the image for homogeneous regions, how do we define which pixels are connected? 11
  • 12. We can define connectivity in three different ways: 1. 4-connectivity 2. 8-connectivity, and 3. 6-connectivity Which is which? 12
  • 13. 6-connectivity NW/SE 6-connectivity NE/SW •Which definition is chosen depends on the application, but the key to avoiding problems is to be consistent. 13
  • 14. We can divide image segmentation techniques into 3 main categories: 1. Region growing and shrinking 2. Clustering methods, and 3. Boundary detection.  The region growing and shrinking methods use the row and column or x and y based image space.  Clustering techniques can be applied to any domain (spatial domain, color, space, feature space, etc.)  The boundary detection methods are extensions of the edge detection techniques. 14
  • 15. Region Growing and Shrinking  Segment the image into regions by operating principally in rc/xy-based image space.  Some are local, others are global, and combine split and merge. 15
  • 16. Split and merge technique  1. Define a homogeneity test. A measurement which incorporate brightness, color, texture, or other application-specific information, and determining a criterion the region must meet to pass the homogeneity test. 2. Split the image into equally sized regions. 3. It the homogeneity test is passed for a region, then merge is attempted with its neighbour (s). If the criterion is not met, the region is split. 4. Continue this process until all regions pass the homogeneity test.  There are many variations of this algorithm. 16
  • 17. The user defined homogeneity test is largely application dependent.  The general idea is to look for features that will be similar within an object and different from the surrounding objects.  In the simplest case  use grey level as feature of interest.  Could use the grey level variance as homogeneity measure and define a homogeneity test that required the grey level variance within a region to be less than some threshold. 17
  • 18. We can define grey-level variance as  1 2 f ( x, y ) I N 1 ( x, y ) region 1 where I f ( x, y ) N ( x, y ) region •The variance is basically a measure of how widely the grey level within a region vary. •Higher order statistic can be used for features such as texture. 18
  • 19. Clustering Technique  Clustering techniques are image segmentation methods which individual elements are placed into groups based on some measure of similarity within the groups.  The simplest method is to divide the space of interest into regions by selecting the centre or median along each dimension and splitting it.  Can be done iteratively until the space is divided into specific number of regions needed.  used in the SCT/Center and PCT/Median segmentation algorithms.   will be effective only if the space and the entire algorithm is designed intelligently. 19
  • 20. Recursive region splitting is a clustering method that has become a standard technique.  One of the 1st algorithms based on recursive region splitting 1. Consider the entire image as one region and computer histograms for each component of interest (red, green and blue for a color image). 2. Apply a peak finding test to each histogram. Select the best peak and put thresholds on either side of the peak. Segment the image into two regions based on this peak. 3. Smooth the binary threshold image so that only a single connected sub-region is left. 4. Repeat step 1-3 for each region until no new sub-regions can be created  no histograms have significant peaks. 20
  • 21. 2 threshold are selected, one on each side of the best peak. The image is then split into two regions. Region 1 corresponds to those pixels with feature values between the selected thresholds. Region 2 consists of those pixels with feature values outside the threshold. 21
  • 22. Many of the parameters of this algorithm are application specific. What peak-finding test do we use? And what is a significant peak? 22
  • 23. Other Clustering Technique 1. SCT/Center segmentation, and 2. PCT/Median segmentation. 23
  • 24. 24
  • 25. Boundary Detection  Performed by finding the boundaries between object defining the objects.  Other segmentation technique include Combined approaches and Morphological Filtering. 25