From a8a088d28c57990c866d1e961cc5e59a1529c37d Mon Sep 17 00:00:00 2001 From: Letu Ren Date: Thu, 15 Aug 2024 18:20:57 +0800 Subject: [PATCH] Fix typo in MorphShapes document --- modules/imgproc/include/opencv2/imgproc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/include/opencv2/imgproc.hpp b/modules/imgproc/include/opencv2/imgproc.hpp index eb92e8cc21..19c73079e6 100644 --- a/modules/imgproc/include/opencv2/imgproc.hpp +++ b/modules/imgproc/include/opencv2/imgproc.hpp @@ -236,7 +236,7 @@ enum MorphShapes { MORPH_CROSS = 1, //!< a cross-shaped structuring element: //!< \f[E_{ij} = \begin{cases} 1 & \texttt{if } {i=\texttt{anchor.y } {or } {j=\texttt{anchor.x}}} \\0 & \texttt{otherwise} \end{cases}\f] MORPH_ELLIPSE = 2 //!< an elliptic structuring element, that is, a filled ellipse inscribed - //!< into the rectangle Rect(0, 0, esize.width, 0.esize.height) + //!< into the rectangle Rect(0, 0, esize.width, esize.height) }; //! @} imgproc_filter