Commit b561cecb authored by Elena Fedotova's avatar Elena Fedotova

Purpose: completed the imgproc chapter

parent 2eecdcd5
...@@ -1017,15 +1017,15 @@ getStructuringElement ...@@ -1017,15 +1017,15 @@ getStructuringElement
:param shape: Element shape that could be one of the following: :param shape: Element shape that could be one of the following:
* ``MORPH_RECT`` - a rectangular structuring element: * **MORPH_RECT** - a rectangular structuring element:
.. math:: .. math::
E_{ij}=1 E_{ij}=1
* ``MORPH_ELLIPSE`` - an elliptic structuring element, that is, a filled ellipse inscribed into the rectangle ``Rect(0, 0, esize.width, 0.esize.height)`` * **MORPH_ELLIPSE** - an elliptic structuring element, that is, a filled ellipse inscribed into the rectangle ``Rect(0, 0, esize.width, 0.esize.height)``
* ``MORPH_CROSS`` - a cross-shaped structuring element: * **MORPH_CROSS** - a cross-shaped structuring element:
.. math:: .. math::
...@@ -1063,6 +1063,7 @@ See Also: ...@@ -1063,6 +1063,7 @@ See Also:
:func:`blur`, :func:`blur`,
:func:`boxFilter`, :func:`boxFilter`,
:func:`GaussianBlur` :func:`GaussianBlur`
.. index:: morphologyEx .. index:: morphologyEx
morphologyEx morphologyEx
...@@ -1133,6 +1134,7 @@ See Also: ...@@ -1133,6 +1134,7 @@ See Also:
:func:`dilate`, :func:`dilate`,
:func:`erode`, :func:`erode`,
:func:`createMorphologyFilter` :func:`createMorphologyFilter`
.. index:: Laplacian .. index:: Laplacian
Laplacian Laplacian
...@@ -1171,6 +1173,7 @@ This is done when ``ksize > 1`` . When ``ksize == 1`` , the Laplacian is compute ...@@ -1171,6 +1173,7 @@ This is done when ``ksize > 1`` . When ``ksize == 1`` , the Laplacian is compute
See Also: See Also:
:func:`Sobel`, :func:`Sobel`,
:func:`Scharr` :func:`Scharr`
.. index:: pyrDown .. index:: pyrDown
pyrDown pyrDown
...@@ -1326,6 +1329,7 @@ See Also: ...@@ -1326,6 +1329,7 @@ See Also:
:func:`sepFilter2D`, :func:`sepFilter2D`,
:func:`filter2D`, :func:`filter2D`,
:func:`GaussianBlur` :func:`GaussianBlur`
.. index:: Scharr .. index:: Scharr
Scharr Scharr
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment