From 796f839b757c73d4f8ee660a485a68a395c9784b Mon Sep 17 00:00:00 2001 From: Vladislav Vinogradov Date: Wed, 7 Mar 2012 14:05:21 +0000 Subject: [PATCH] minor fix in gpu docs (filter2D and convolve) --- modules/gpu/doc/image_filtering.rst | 6 +++--- modules/gpu/doc/image_processing.rst | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/gpu/doc/image_filtering.rst b/modules/gpu/doc/image_filtering.rst index 2e674cf..4bec191 100644 --- a/modules/gpu/doc/image_filtering.rst +++ b/modules/gpu/doc/image_filtering.rst @@ -379,7 +379,7 @@ Creates a non-separable linear filter. :param kernel: 2D array of filter coefficients. Floating-point coefficients will be converted to fixed-point representation before the actual processing. - :param ksize: Kernel size. + :param ksize: Kernel size. Supports size up to 16. For larger kernels use :ocv:func:`gpu::convolve`. :param anchor: Anchor point. The default value Point(-1, -1) means that the anchor is at the kernel center. @@ -401,7 +401,7 @@ Applies the non-separable 2D linear filter to an image. :param ddepth: Desired depth of the destination image. If it is negative, it is the same as ``src.depth()`` . It supports only the same depth as the source image depth. - :param kernel: 2D array of filter coefficients. This filter works with integers kernels. If ``kernel`` has a ``float`` or ``double`` type, it uses fixed-point arithmetic. + :param kernel: 2D array of filter coefficients. :param anchor: Anchor of the kernel that indicates the relative position of a filtered point within the kernel. The anchor resides within the kernel. The special default value (-1,-1) means that the anchor is at the kernel center. @@ -409,7 +409,7 @@ Applies the non-separable 2D linear filter to an image. .. note:: This filter does not check out-of-border accesses, so only a proper sub-matrix of a bigger matrix has to be passed to it. -.. seealso:: :ocv:func:`filter2D` +.. seealso:: :ocv:func:`filter2D`, :ocv:func:`gpu::convolve` diff --git a/modules/gpu/doc/image_processing.rst b/modules/gpu/doc/image_processing.rst index 70634f6..5a6c0a4 100644 --- a/modules/gpu/doc/image_processing.rst +++ b/modules/gpu/doc/image_processing.rst @@ -253,6 +253,8 @@ Computes a convolution (or cross-correlation) of two images. :param buf: Optional buffer to avoid extra memory allocations (for many calls with the same sizes). +.. seealso:: :ocv:func:`gpu::filter2D` + gpu::ConvolveBuf -- 2.7.4