Skip to content

Commit 5393185

Browse files
authored
Merge pull request opencv#17360 from mwtarnowski:fix-documentation-imgproc-blur
* fix documentation for cv::blur * correct the position of ksize parameter
1 parent 9fef09f commit 5393185

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/imgproc/include/opencv2/imgproc.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ The function smooths an image using the kernel:
15071507
15081508
\f[\texttt{K} = \frac{1}{\texttt{ksize.width*ksize.height}} \begin{bmatrix} 1 & 1 & 1 & \cdots & 1 & 1 \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \hdotsfor{6} \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \end{bmatrix}\f]
15091509
1510-
The call `blur(src, dst, ksize, anchor, borderType)` is equivalent to `boxFilter(src, dst, src.type(),
1510+
The call `blur(src, dst, ksize, anchor, borderType)` is equivalent to `boxFilter(src, dst, src.type(), ksize,
15111511
anchor, true, borderType)`.
15121512
15131513
@param src input image; it can have any number of channels, which are processed independently, but

0 commit comments

Comments
 (0)