Commit cc021e55 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #8982 from catree:morphologyEx_iterations_doc

parents 51e16bbe a084501e
...@@ -2181,6 +2181,9 @@ kernel center. ...@@ -2181,6 +2181,9 @@ kernel center.
@param borderValue Border value in case of a constant border. The default value has a special @param borderValue Border value in case of a constant border. The default value has a special
meaning. meaning.
@sa dilate, erode, getStructuringElement @sa dilate, erode, getStructuringElement
@note The number of iterations is the number of times erosion or dilatation operation will be applied.
For instance, an opening operation (#MORPH_OPEN) with two iterations is equivalent to apply
successively: erode -> erode -> dilate -> dilate (and not erode -> dilate -> erode -> dilate).
*/ */
CV_EXPORTS_W void morphologyEx( InputArray src, OutputArray dst, CV_EXPORTS_W void morphologyEx( InputArray src, OutputArray dst,
int op, InputArray kernel, int op, InputArray kernel,
......
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