Chapter4 Region Segmentation
Chapter4 Region Segmentation
1
Why Region-Based Segmentation?
• Segmentation
– Edge detection and
Thresholding not always
effective.
• Homogenous regions
– Region-based segmentation.
– Effective in noisy images.
Definitions
• Based on sets.
R7
R1
regions Ri. R5
R4
region.
– One pixel can only belong to a
S
single region.
R Ri Ri R j
i 1
R7
R6
R1
R5
R2
R3
R4
VC 14/15 - TP9 - Region-Based Segmentation
Basic Formulation
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.
How do we form regions?
• Region Growing
• Region Merging
• Region Splitting
• Split and Merge
• Watershed
• ...
1. Region growing is a procedure that groups pixels or subregions into larger regions.
2. The simplest of these approaches is pixel aggregation, which starts with a set of “seed”
points and from these grows regions by appending to each seed points those neighboring
pixels that have similar properties (such as gray level, texture, color, shape).
3. Region growing based techniques are better than the edge-based techniques in noisy
images where edges are difficult to detect.
7
07/15/2024
Region growing
• Groups pixels into larger • Iterative process
regions. – How to start?
• Starts with a seed region. – How to iterate?
• Grows region by merging – When to stop?
neighboring pixels.
Finish
Initial Stop
Iterations
Regions Condition
Similarity Criteria
• Homogeneity of regions is used as the main
segmentation criterion in region growing.
– gray level
– color, texture
– shape Choice of criteria
affects segmentation
– model results dramatically!
– etc.
11
07/15/2024
4-connectivity
12
07/15/2024
8-connectivity
13
07/15/2024
VC 14/15 - TP9 - Region-Based Segmentation
Example: Region Growing based on 8-connectivity
R4 R5
R3
R4 R5 R6 R7 R6 R7
21
07/15/2024
VC 14/15 - TP9 - Region-Based Segmentation