This chapter describes operators of region morphology.
Region morphology provides a set of morphological operators that allow to modify or describe the shape of a region. The morphological operators can be used, for example, to connect or disconnect adjacent regions or to smooth the boundary of a region. In the following, we will take a closer look at the morphological operators.
To dilate or erode an input region, a structuring element is applied to the input region. This structuring element is scanned over the image line-by-line. During dilation the reference point of the structuring element is added to the resulting region whenever the structuring element and the input region have at least one pixel in common. This results in an enlarged region, as shown in the image below. Erosion reduces the area of the input region because the reference point is only added to the resulting region if the structuring element lies completely within the input region. As a result, erosion can alternatively be used to find objects.
( 1) | ( 2) | ( 3) | ( 4) |
These operators can be used to dilate or erode a region:
Morphological Operators | Structuring Element | Reference Point | |
---|---|---|---|
|
|
arbitrary | origin |
|
|
arbitrary, transposed | origin |
|
|
arbitrary | arbitrary |
|
|
arbitrary, transposed | arbitrary |
|
|
circular | origin |
|
|
rectangular | origin |
Note that Minkowski addition and dilation are identical if the structuring element is symmetric. The same applies to Minkowski subtraction and erosion. Erosion can be used to separate objects that are attached to each other. In the following, the steps that are required to separate objects are described briefly.
First, the objects of the image must be segmented, for example by
using the operator
. Next, the operator
threshold
is used to get multiple regions instead of a
single region. As you can see in the image (3) below, the result of
the connection is unsatisfactory because several objects are merged.
connection
( 1) | ( 2) | ( 3) |
This problem can be solved using erosion. As mentioned above,
erosion reduces the area of the input region. Thus, if erosion
is applied prior to the operator
, the regions
are separated as desired. Lastly, dilation is applied on the
separated regions to approximately get the original shape back.
connection
( 1) | ( 2) | ( 3) |
Both operations generate the resulting region by combining dilation and erosion operations. Opening is an erosion followed by a dilation. It is useful to eliminate small unwanted structures. Closing is the opposite of opening, i.e., a dilation followed by an erosion. The closing operator is able to close small gaps, as shown below.
( 1) | ( 2) | ( 3) | ( 4) |
These operators can be used to open or close a region:
Morphological Operators | Structuring Element | Reference Point | |
---|---|---|---|
|
|
arbitrary | origin |
|
|
circular | origin |
|
|
rectangular | origin |
In addition to the operators mentioned above, you can use
to get the difference between the input region and
the result of the opening, or top_hat
to get the
difference between the result of the closing and the input region.
Furthermore, you can calculate the boundary of a region
with the operator bottom_hat
.
boundary
( 1) | ( 2) | ( 3) |
The operator
can be used to find objects, taking
the foreground and the background of the image into account.
To remove unwanted branches from a skeleton, hit_or_miss
is a suitable operator.
pruning
In the following list, the most important terms that are used in the context of Morphology are described.
Region which is modified by morphological operators.
Region which is used to scan the input region.
bottom_hat
boundary
closing
closing_circle
closing_rectangle1
dilation1
dilation2
dilation_circle
dilation_rectangle1
erosion1
erosion2
erosion_circle
erosion_rectangle1
hit_or_miss
minkowski_add1
minkowski_add2
minkowski_sub1
minkowski_sub2
opening
opening_circle
opening_rectangle1
pruning
top_hat