In mathematical morphology, hit-or-miss transform is an operation that detects a given configuration (or pattern) in a binary image, using the morphological erosion operator and a pair of disjoint structuring elements. The result of the hit-or-miss transform is the set of positions where the first structuring element fits in the foreground of the input image, and the second structuring element misses it completely.
Rd
Zd
A structuring element is a simple, pre-defined shape, represented as a binary image, used to probe another binary image, in morphological operations such as erosion, dilation, opening, and closing.
Let
C
D
C\capD=\emptyset
A\odotB=(A\ominusC)\cap(Ac\ominusD)
where
Ac
That is, a point x in E belongs to the hit-or-miss transform output if C translated to x fits in A, and D translated to x misses A (fits the background of A).
The hit-or-miss transform uses pairs of structuring elements that are disjoint. Here are four common structuring elements used in various morphological operations.
Following structuring elements can be used to find different convex corner points in images.
This mask identifies the bottom-left convex corner, with '1's indicating the corner and its surroundings, '0's representing the background, and 'X's as don't-care conditions. It is designed to match patterns where the corner pixel and the pixels directly adjacent form a specific configuration. This helps in locating the bottom-left convex corners in binary images.
----
This mask identifies the top-left convex corner, with '1's indicating the corner and its surroundings, '0's representing the background, and 'X's as don't-care conditions. It is designed to match patterns where the corner pixel and the pixels directly adjacent form a specific configuration. This helps in locating the top-left convex corners in binary images.
----
This mask detects the top-right convex corner, with a similar pattern of '1's for the corner and surroundings, '0's for the background, and 'X's as don't-care conditions. It is designed to match patterns where the corner pixel and the pixels directly adjacent form a specific configuration. This helps in locating the top-right convex corners in binary images.
----
This mask targets the bottom-right convex corner, using '1's to mark the corner and its adjacent pixels, '0's for the background, and 'X's as don't-care conditions. It is designed to match patterns where the corner pixel and the pixels directly adjacent form a specific configuration. This helps in locating the bottom-right convex corners in binary images.
After obtaining the locations of corners in each orientation, we can then simply OR(Logic OR) all these images together to get the final result showing the locations of all right angle convex corners in any orientation.
Let
E=Z2
C1=\{(0,0),(-1,-1),(0,-1),(1,-1)\}
D1=\{(-1,1),(0,1),(1,1)\}
C2=\{(-1,0),(0,0),(-1,-1),(0,-1)\}
D2=\{(0,1),(1,1),(1,0)\}
B1,\ldots,B8
For any i between 1 and 8, and any binary image X, define
X ⊗ Bi=X\setminus(X\odotBi),
\setminus
The thinning of an image A is obtained by cyclically iterating until convergence:
A ⊗ B1 ⊗ B2 ⊗ \ldots ⊗ B8 ⊗ B1 ⊗ B2 ⊗ \ldots