Opening (morphology)

From HandWiki
The opening of the dark-blue square by a disk, resulting in the light-blue square with round corners.

In mathematical morphology, opening is the dilation of the erosion of a set A by a structuring element B:

[math]\displaystyle{ A\circ B = (A\ominus B)\oplus B, \, }[/math]

where [math]\displaystyle{ \ominus }[/math] and [math]\displaystyle{ \oplus }[/math] denote erosion and dilation, respectively.

Together with closing, the opening serves in computer vision and image processing as a basic workhorse of morphological noise removal. Opening removes small objects from the foreground (usually taken as the bright pixels) of an image, placing them in the background, while closing removes small holes in the foreground, changing small islands of background into foreground. These techniques can also be used to find specific shapes in an image. Opening can be used to find things into which a specific structuring element can fit (edges, corners, ...).

One can think of B sweeping around the inside of the boundary of A, so that it does not extend beyond the boundary, and shaping the A boundary around the boundary of the element.

Properties

  • Opening is idempotent, that is, [math]\displaystyle{ (A\circ B)\circ B = A\circ B }[/math].
  • Opening is increasing, that is, if [math]\displaystyle{ A\subseteq C }[/math], then [math]\displaystyle{ A\circ B \subseteq C\circ B }[/math].
  • Opening is anti-extensive, i.e., [math]\displaystyle{ A\circ B\subseteq A }[/math].
  • Opening is translation invariant.
  • Opening and closing satisfy the duality [math]\displaystyle{ A \bullet B = (A^{c} \circ B^{c})^{c} }[/math], where [math]\displaystyle{ \bullet }[/math] denotes closing.

Extension: Opening by reconstruction

In morphological opening [math]\displaystyle{ (A\ominus B)\oplus B }[/math] , the erosion operation removes objects that are smaller than structuring element B and the dilation operation (approximately) restores the size and shape of the remaining objects. However, restoration accuracy in the dilation operation depends highly on the type of structuring element and the shape of the restoring objects. The opening by reconstruction method is able to restore the objects more completely after erosion has been applied. It is defined as the reconstruction by geodesic dilation of [math]\displaystyle{ n }[/math] erosions of [math]\displaystyle{ F }[/math] by [math]\displaystyle{ B }[/math] with respect to [math]\displaystyle{ F }[/math] :

[math]\displaystyle{ O_R^{(n)}(F) = R_F^{D}[ (F\ominus nB)], }[/math][1]

where [math]\displaystyle{ (F\ominus nB) }[/math] denotes a marker image and [math]\displaystyle{ F }[/math] is a mask image in morphological reconstruction by dilation. [math]\displaystyle{ R_F^{D}[ (F\ominus nB)] = D_F^{(k)}[ (F\ominus nB)], }[/math][1] [math]\displaystyle{ D }[/math] denotes geodesic dilation with [math]\displaystyle{ k }[/math] iterations until stability, i.e., such that [math]\displaystyle{ D_F^{(k)}[ (F\ominus nB)] = D_F^{(k-1)}[ (F\ominus nB)]. }[/math][1] Since [math]\displaystyle{ D_F^{(1)}[ (F\ominus nB)] = ([ (F\ominus nB)]\oplus B)\cap F }[/math],[1] the marker image is limited in the growth region by the mask image, so the dilation operation on the marker image will not expand beyond the mask image. As a result, the marker image is a subset of the mask image [math]\displaystyle{ (F\ominus nB)\subseteq F. }[/math][1] (Strictly, this holds for binary masks only. However, similar statements hold when the mask is not binary.)

The images below present a simple opening-by-reconstruction example which extracts the vertical strokes from an input text image. Since the original image is converted from grayscale to binary image, it has a few distortions in some characters so that same characters might have different vertical lengths. In this case, the structuring element is an 8-pixel vertical line which is applied in the erosion operation in order to find objects of interest. Moreover, morphological reconstruction by dilation, [math]\displaystyle{ R_F^{D}[ (F\ominus nB)] = D_F^{(k)}[ (F\ominus nB)] }[/math][1] iterates [math]\displaystyle{ k = 9 }[/math] times until the resulting image converges.

Original image for opening by reconstruction
Marker image
Result of opening by reconstruction

See also

Bibliography

  • Image Analysis and Mathematical Morphology by Jean Serra, ISBN:0-12-637240-3 (1982)
  • Image Analysis and Mathematical Morphology, Volume 2: Theoretical Advances by Jean Serra, ISBN:0-12-637241-1 (1988)
  • An Introduction to Morphological Image Processing by Edward R. Dougherty, ISBN:0-8194-0845-X (1992)

External links

References

  1. 1.0 1.1 1.2 1.3 1.4 1.5 Woods}first=Richard E. (2016). Digital image processing. Pearson India Education Services. ISBN 9789332570320. OCLC 979415531. 
  • Digital Image Processing (Third Edition) by Rafael C. Gonzalez and Richard E. Woods, ISBN:978-93-325-7032-0(2008)