Commit b07f89dc authored by Ilya Lysenkov's avatar Ilya Lysenkov

Removed mentions of TBB optimization if users can't actually use it (thanks to Andrey K.)

parent 2f44610e
......@@ -858,7 +858,7 @@ The function dilates the source image using the specified structuring element th
\texttt{dst} (x,y) = \max _{(x',y'): \, \texttt{element} (x',y') \ne0 } \texttt{src} (x+x',y+y')
The function supports the in-place mode. Dilation can be applied several ( ``iterations`` ) times. In case of multi-channel images, each channel is processed independently. The function is parallelized with the TBB library.
The function supports the in-place mode. Dilation can be applied several ( ``iterations`` ) times. In case of multi-channel images, each channel is processed independently.
.. seealso::
......@@ -898,7 +898,7 @@ The function erodes the source image using the specified structuring element tha
\texttt{dst} (x,y) = \min _{(x',y'): \, \texttt{element} (x',y') \ne0 } \texttt{src} (x+x',y+y')
The function supports the in-place mode. Erosion can be applied several ( ``iterations`` ) times. In case of multi-channel images, each channel is processed independently. The function is parallelized with the TBB library.
The function supports the in-place mode. Erosion can be applied several ( ``iterations`` ) times. In case of multi-channel images, each channel is processed independently.
.. seealso::
......@@ -1233,7 +1233,7 @@ Morphological gradient:
\texttt{dst} = \mathrm{blackhat} ( \texttt{src} , \texttt{element} )= \mathrm{close} ( \texttt{src} , \texttt{element} )- \texttt{src}
Any of the operations can be done in-place. In case of multi-channel images, each channel is processed independently. The function is parallelized with the TBB library.
Any of the operations can be done in-place. In case of multi-channel images, each channel is processed independently.
.. seealso::
......
......@@ -708,7 +708,6 @@ value using the Otsu's algorithm and uses it instead of the specified ``thresh``
The function returns the computed threshold value.
Currently, the Otsu's method is implemented only for 8-bit images.
The function is parallelized with the TBB library except the Otsu's method.
.. image:: pics/threshold.png
......
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