SlideShare uma empresa Scribd logo
1 de 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

Mais conteúdo relacionado

Mais procurados

Image feature extraction
Image feature extractionImage feature extraction
Image feature extractionRishabh shah
 
introduction to Digital Image Processing
introduction to Digital Image Processingintroduction to Digital Image Processing
introduction to Digital Image Processingnikesh gadare
 
Region based segmentation
Region based segmentationRegion based segmentation
Region based segmentationramya marichamy
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation pptGichelle Amon
 
Image segmentation
Image segmentation Image segmentation
Image segmentation Amnaakhaan
 
IMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUESIMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUESVicky Kumar
 
Image segmentation in Digital Image Processing
Image segmentation in Digital Image ProcessingImage segmentation in Digital Image Processing
Image segmentation in Digital Image ProcessingDHIVYADEVAKI
 
Texture in image processing
Texture in image processing Texture in image processing
Texture in image processing Anna Aquarian
 
Features image processing and Extaction
Features image processing and ExtactionFeatures image processing and Extaction
Features image processing and ExtactionAli A Jalil
 
Texture based feature extraction and object tracking
Texture based feature extraction and object trackingTexture based feature extraction and object tracking
Texture based feature extraction and object trackingPriyanka Goswami
 
Edge Detection algorithm and code
Edge Detection algorithm and codeEdge Detection algorithm and code
Edge Detection algorithm and codeVaddi Manikanta
 
Digital Image Processing: Image Enhancement in the Spatial Domain
Digital Image Processing: Image Enhancement in the Spatial DomainDigital Image Processing: Image Enhancement in the Spatial Domain
Digital Image Processing: Image Enhancement in the Spatial DomainMostafa G. M. Mostafa
 
Image segmentation based on color
Image segmentation based on colorImage segmentation based on color
Image segmentation based on coloreSAT Journals
 
Image processing
Image processingImage processing
Image processingPooja G N
 

Mais procurados (20)

Image feature extraction
Image feature extractionImage feature extraction
Image feature extraction
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
introduction to Digital Image Processing
introduction to Digital Image Processingintroduction to Digital Image Processing
introduction to Digital Image Processing
 
Region based segmentation
Region based segmentationRegion based segmentation
Region based segmentation
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation ppt
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
 
IMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUESIMAGE SEGMENTATION TECHNIQUES
IMAGE SEGMENTATION TECHNIQUES
 
Image segmentation in Digital Image Processing
Image segmentation in Digital Image ProcessingImage segmentation in Digital Image Processing
Image segmentation in Digital Image Processing
 
Texture in image processing
Texture in image processing Texture in image processing
Texture in image processing
 
Features image processing and Extaction
Features image processing and ExtactionFeatures image processing and Extaction
Features image processing and Extaction
 
Texture based feature extraction and object tracking
Texture based feature extraction and object trackingTexture based feature extraction and object tracking
Texture based feature extraction and object tracking
 
Edge Detection algorithm and code
Edge Detection algorithm and codeEdge Detection algorithm and code
Edge Detection algorithm and code
 
Segmentation Techniques -I
Segmentation Techniques -ISegmentation Techniques -I
Segmentation Techniques -I
 
Digital Image Processing: Image Enhancement in the Spatial Domain
Digital Image Processing: Image Enhancement in the Spatial DomainDigital Image Processing: Image Enhancement in the Spatial Domain
Digital Image Processing: Image Enhancement in the Spatial Domain
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image Processing
 
Image segmentation based on color
Image segmentation based on colorImage segmentation based on color
Image segmentation based on color
 
Image processing
Image processingImage processing
Image processing
 
Hit and-miss transform
Hit and-miss transformHit and-miss transform
Hit and-miss transform
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 

Destaque

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
 

Destaque (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
 

Semelhante a 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
 

Semelhante a 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
 
I010634450
I010634450I010634450
I010634450
 
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
 
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
 

Mais 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
 

Mais 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)
 

Último

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 

Último (20)

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 

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