HitMiss tutorial

pull/7948/head
Lorena García 8 years ago
parent 3153450756
commit 3650ec02be
  1. 60
      doc/tutorials/imgproc/hitOrMiss/hitOrMiss.markdown
  2. BIN
      doc/tutorials/imgproc/hitOrMiss/images/hitmiss_example2.png
  3. BIN
      doc/tutorials/imgproc/hitOrMiss/images/hitmiss_example3.png
  4. BIN
      doc/tutorials/imgproc/hitOrMiss/images/hitmiss_input.png
  5. BIN
      doc/tutorials/imgproc/hitOrMiss/images/hitmiss_kernels.png
  6. BIN
      doc/tutorials/imgproc/hitOrMiss/images/hitmiss_output.png
  7. 8
      doc/tutorials/imgproc/table_of_content_imgproc.markdown
  8. 4
      modules/imgproc/include/opencv2/imgproc.hpp
  9. 32
      samples/cpp/tutorial_code/ImgProc/HitMiss.cpp

@ -0,0 +1,60 @@
Hit-or-Miss {#tutorial_hitOrMiss}
=================================
Goal
----
In this tutorial you will learn how to find a given configuration or pattern in a binary image by using the Hit-or-Miss transform (also known as Hit-and-Miss transform).
This transform is also the basis of more advanced morphological operations such as thinning or pruning.
We will use the OpenCV function @ref cv::morphologyEx.
Hit-or-Miss theory
-------------------
Morphological operators process images based on their shape. These operators apply one or more *structuring elements* to an input image to obtain the output image.
The two basic morphological operations are the *erosion* and the *dilation*. The combination of these two operations generate advanced morphological transformations such as *opening*, *closing*, or *top-hat* transform.
To know more about these and other basic morphological operations refer to previous tutorials @ref tutorial_erosion_dilatation "here" and @ref tutorial_opening_closing_hats "here".
The Hit-or-Miss transformation is useful to find patterns in binary images. In particular, it finds those pixels whose neighbourhood matches the shape of a first structuring element \f$B_1\f$
while not matching the shape of a second structuring element \f$B_2\f$ at the same time. Mathematically, the operation applied to an image \f$A\f$ can be expressed as follows:
\f[
A\circledast B = (A\ominus B_1) \cap (A^c\ominus B_2)
\f]
Therefore, the hit-or-miss operation comprises three steps:
1. Erode image \f$A\f$ with structuring element \f$B_1\f$.
2. Erode the complement of image \f$A\f$ (\f$A^c\f$) with structuring element \f$B_2\f$.
3. AND results from step 1 and step 2.
The structuring elements \f$B_1\f$ and \f$B_2\f$ can be combined into a single element \f$B\f$. Let's see an example:
![Structuring elements (kernels). Left: kernel to 'hit'. Middle: kernel to 'miss'. Right: final combined kernel](images/hitmiss_kernels.png)
In this case, we are looking for a pattern in which the central pixel belongs to the background while the north, south, east, and west pixels belong to the foreground. The rest of pixels in the neighbourhood can be of any kind, we don't care about them. Now, let's apply this kernel to an input image:
![Input binary image](images/hitmiss_input.png)
![Output binary image](images/hitmiss_output.png)
You can see that the pattern is found in just one location within the image.
Code
----
The code corresponding to the previous example is shown below. You can also download it from
[here](https://github.com/opencv/opencv/tree/master/samples/cpp/tutorial_code/ImgProc/HitMiss.cpp)
@include samples/cpp/tutorial_code/ImgProc/HitMiss.cpp
As you can see, it is as simple as using the function @ref cv::morphologyEx with the operation type @ref cv::MORPH_HITMISS and the chosen kernel.
Other examples
--------------
Here you can find the output results of applying different kernels to the same input image used before:
![Kernel and output result for finding top-right corners](images/hitmiss_example2.png)
![Kernel and output result for finding left end points](images/hitmiss_example3.png)
Now try your own patterns!

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

@ -27,6 +27,14 @@ In this section you will learn about the image processing (manipulation) functio
Here we investigate different morphology operators
- @subpage tutorial_hitOrMiss
*Compatibility:* \> OpenCV 2.4
*Author:* Lorena García
Learn how to find patterns in binary images using the Hit-or-Miss operation
- @subpage tutorial_moprh_lines_detection
*Compatibility:* \> OpenCV 2.0

@ -245,8 +245,8 @@ enum MorphTypes{
//!< \f[\texttt{dst} = \mathrm{tophat} ( \texttt{src} , \texttt{element} )= \texttt{src} - \mathrm{open} ( \texttt{src} , \texttt{element} )\f]
MORPH_BLACKHAT = 6, //!< "black hat"
//!< \f[\texttt{dst} = \mathrm{blackhat} ( \texttt{src} , \texttt{element} )= \mathrm{close} ( \texttt{src} , \texttt{element} )- \texttt{src}\f]
MORPH_HITMISS = 7 //!< "hit and miss"
//!< .- Only supported for CV_8UC1 binary images. Tutorial can be found in [this page](https://web.archive.org/web/20160316070407/http://opencv-code.com/tutorials/hit-or-miss-transform-in-opencv/)
MORPH_HITMISS = 7 //!< "hit or miss"
//!< .- Only supported for CV_8UC1 binary images. A tutorial can be found in the documentation
};
//! shape of the structuring element

@ -0,0 +1,32 @@
#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
using namespace cv;
int main(){
Mat input_image = (Mat_<uchar>(8, 8) <<
0, 0, 0, 0, 0, 0, 0, 0,
0, 255, 255, 255, 0, 0, 0, 255,
0, 255, 255, 255, 0, 0, 0, 0,
0, 255, 255, 255, 0, 255, 0, 0,
0, 0, 255, 0, 0, 0, 0, 0,
0, 0, 255, 0, 0, 255, 255, 0,
0, 255, 0, 255, 0, 0, 255, 0,
0, 255, 255, 255, 0, 0, 0, 0);
Mat kernel = (Mat_<uchar>(3, 3) <<
0, 1, 0,
1, -1, 1,
0, 1, 0);
Mat output_image;
morphologyEx(input_image, output_image, MORPH_HITMISS, kernel);
namedWindow("Original", CV_WINDOW_NORMAL);
imshow("Original", input_image);
namedWindow("Hit or Miss", CV_WINDOW_NORMAL);
imshow("Hit or Miss", output_image);
waitKey(0);
return 0;
}
Loading…
Cancel
Save