From 0a8c7d274bcf2023cdeafc58373b6a77eed4e219 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Tue, 26 Apr 2011 13:51:30 +0000 Subject: [PATCH] fixed typo in cv::erode description --- modules/imgproc/doc/filtering.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/doc/filtering.rst b/modules/imgproc/doc/filtering.rst index 0118828a8b..d54ef0c270 100644 --- a/modules/imgproc/doc/filtering.rst +++ b/modules/imgproc/doc/filtering.rst @@ -827,7 +827,7 @@ erode :param dst: Destination image of the same size and type as ``src`` . - :param element: Structuring element used for dilation. If ``element=Mat()`` , a :math:`3\times 3` rectangular structuring element is used. + :param element: Structuring element used for erosion. If ``element=Mat()`` , a :math:`3\times 3` rectangular structuring element is used. :param anchor: Position of the anchor within the element. The default value :math:`(-1, -1)` means that the anchor is at the element center.