Presentation is loading. Please wait.

Presentation is loading. Please wait.

Mestrado em Ciência de Computadores Mestrado Integrado em Engenharia de Redes e Sistemas Informáticos VC 14/15 – TP9 Region-Based Segmentation Miguel Tavares.

Similar presentations


Presentation on theme: "Mestrado em Ciência de Computadores Mestrado Integrado em Engenharia de Redes e Sistemas Informáticos VC 14/15 – TP9 Region-Based Segmentation Miguel Tavares."— Presentation transcript:

1 Mestrado em Ciência de Computadores Mestrado Integrado em Engenharia de Redes e Sistemas Informáticos VC 14/15 – TP9 Region-Based Segmentation Miguel Tavares Coimbra

2 VC 14/15 - TP9 - Region-Based Segmentation Outline Region-based Segmentation Morphological Filters

3 VC 14/15 - TP9 - Region-Based Segmentation Topic: Region-based Segmentation Region-based Segmentation Morphological Filters

4 VC 14/15 - TP9 - Region-Based Segmentation Why Region-Based Segmentation? Segmentation –Edge detection and Thresholding not always effective. Homogenous regions –Region-based segmentation. –Effective in noisy images.

5 VC 14/15 - TP9 - Region-Based Segmentation Definitions Based on sets. Each image R is a set of regions R i. –Every pixel belongs to one region. –One pixel can only belong to a single region. R1R1 R3R3 R2R2 R4R4 R6R6 R5R5 R7R7

6 VC 14/15 - TP9 - Region-Based Segmentation R1R1 R3R3 R2R2 R4R4 R6R6 R5R5 R7R7

7 Basic Formulation Let R represent the entire image region. Segmentation partitions R into n subregions, R 1, R 2,..., R n, such that: a) b) c) d) e) a)Every pixel must be in a region b)Points in a region must be connected. c)Regions must be disjoint. d)All pixels in a region satisfy specific properties. e)Different regions have different properties.

8 VC 14/15 - TP9 - Region-Based Segmentation How do we form regions? Region Growing Region Merging Region Splitting Split and Merge Watershed... What a computer sees

9 VC 14/15 - TP9 - Region-Based Segmentation Region growing Groups pixels into larger regions. Starts with a seed region. Grows region by merging neighboring pixels. Iterative process –How to start? –How to iterate? –When to stop? Initial Regions Iterations Stop Condition Finish

10 VC 14/15 - TP9 - Region-Based Segmentation

11 Region merging Algorithm –Divide image into an initial set of regions. One region per pixel. –Define a similarity criteria for merging regions. –Merge similar regions. –Repeat previous step until no more merge operations are possible.

12 VC 14/15 - TP9 - Region-Based Segmentation Similarity Criteria Homogeneity of regions is used as the main segmentation criterion in region growing. –gray level –color, texture –shape –model –etc. Choice of criteria affects segmentation results dramatically!

13 VC 14/15 - TP9 - Region-Based Segmentation Gray-Level Criteria Comparing to Original Seed Pixel –Very sensitive to choice of seed point. Comparing to Neighbor in Region –Allows gradual changes in the region. –Can cause significant drift. Comparing to Region Statistics –Acts as a drift dampener. Other possibilities!

14 VC 14/15 - TP9 - Region-Based Segmentation Region splitting Algorithm –One initial set that includes the whole image. –Similarity criteria. –Iteratively split regions into sub-regions. –Stop when no more splittings are possible. R1R1 R1R1 R2R2 R3R3 R4R4 R1R1 R2R2 R3R3 R4R4 R6R6 R5R5 R7R7 R1R1 R3R3 R2R2 R4R4 R6R6 R5R5 R7R7

15 VC 14/15 - TP9 - Region-Based Segmentation [Machine Vision; David Vernon]

16 VC 14/15 - TP9 - Region-Based Segmentation Split and Merge Combination of both algorithms. Can handle a larger variety of shapes. –Simply apply previous algorithms consecutively.

17 VC 14/15 - TP9 - Region-Based Segmentation The Watershed Transform Geographical inspiration. –Shed water over rugged terrain. –Each lake corresponds to a region. Characteristics –Computationally complex. –Great flexibility in segmentation. –Risk of over-segmentation.

18 VC 14/15 - TP9 - Region-Based Segmentation The Drainage Analogy Two points are in the same region if they drain to the same point. Courtesy of Dr. Peter Yim at National Institutes of Health, Bethesda, MD

19 VC 14/15 - TP9 - Region-Based Segmentation The Immersion Analogy

20 VC 14/15 - TP9 - Region-Based Segmentation [Milan Sonka, Vaclav Hlavac, and Roger Boyle]

21 VC 14/15 - TP9 - Region-Based Segmentation Over-Segmentation Over-segmentation. –Raw watershed segmentation produces a severely oversegmented image with hundreds or thousands of catchment basins. Post-Processing. –Region merging. –Edge information. –Etc.

22 VC 14/15 - TP9 - Region-Based Segmentation Topic: Morphological Filters Region-based Segmentation Morphological Filters

23 VC 14/15 - TP9 - Region-Based Segmentation Mathematical Morphology Provides a mathematical description of geometric structures. Based on sets. –Groups of pixels which define an image region. What is this used for? –Binary images. –Can be used for post- processing segmentation results! Core techniques –Erosion, Dilation. –Open, Close.

24 VC 14/15 - TP9 - Region-Based Segmentation Tumor Segmentation using Morphologic Filtering

25 VC 14/15 - TP9 - Region-Based Segmentation Dilation, Erosion Two sets: –Image –Morphological kernel. Dilation (D) –Union of the kernel with the image set. –Increases resulting area. Erosion (E) –Intersection. –Decreases resulting area.

26 VC 14/15 - TP9 - Region-Based Segmentation Dilation Example using a 3x3 morphological kernel

27 VC 14/15 - TP9 - Region-Based Segmentation Erosion Example using a 3x3 morphological kernel

28 VC 14/15 - TP9 - Region-Based Segmentation Opening, Closing Opening –Erosion, followed by dilation. –Less destructive than an erosion. –Adapts image shape to kernel shape. Closing –Dilation, followed by erosion. –Less destructive than a dilation. –Tends to close shape irregularities.

29 VC 14/15 - TP9 - Region-Based Segmentation Opening Example using a 3x3 morphological kernel

30 VC 14/15 - TP9 - Region-Based Segmentation Closing Example using a 3x3 morphological kernel

31 VC 14/15 - TP9 - Region-Based Segmentation Core morphological operators Dilation Erosion Closing Opening

32 VC 14/15 - TP9 - Region-Based Segmentation Example: Opening Tresholding Opening

33 VC 14/15 - TP9 - Region-Based Segmentation Example: Closing Closing

34 VC 14/15 - TP9 - Region-Based Segmentation Connected Component Analysis Define ‘connected’. –4 neighbors. –8 neighbors. Search the image for seed points. Recursively obtain all connected points of the seeded region.

35 VC 14/15 - TP9 - Region-Based Segmentation Resources Gonzalez & Woods - Chapter 7 and 8


Download ppt "Mestrado em Ciência de Computadores Mestrado Integrado em Engenharia de Redes e Sistemas Informáticos VC 14/15 – TP9 Region-Based Segmentation Miguel Tavares."

Similar presentations


Ads by Google