We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 51e16bb + a084501 commit cc021e5Copy full SHA for cc021e5
modules/imgproc/include/opencv2/imgproc.hpp
@@ -2181,6 +2181,9 @@ kernel center.
2181
@param borderValue Border value in case of a constant border. The default value has a special
2182
meaning.
2183
@sa dilate, erode, getStructuringElement
2184
+@note The number of iterations is the number of times erosion or dilatation operation will be applied.
2185
+For instance, an opening operation (#MORPH_OPEN) with two iterations is equivalent to apply
2186
+successively: erode -> erode -> dilate -> dilate (and not erode -> dilate -> erode -> dilate).
2187
*/
2188
CV_EXPORTS_W void morphologyEx( InputArray src, OutputArray dst,
2189
int op, InputArray kernel,
0 commit comments