From 92d2d747313b094b3137a683859f85a04b1eccfc Mon Sep 17 00:00:00 2001 From: Alexey Spizhevoy Date: Thu, 1 Mar 2012 08:02:34 +0000 Subject: [PATCH] Fixed docs for gpu::convolve() --- modules/gpu/doc/image_processing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gpu/doc/image_processing.rst b/modules/gpu/doc/image_processing.rst index f7b4083b34..e584958b66 100644 --- a/modules/gpu/doc/image_processing.rst +++ b/modules/gpu/doc/image_processing.rst @@ -247,7 +247,7 @@ Computes a convolution (or cross-correlation) of two images. :param templ: Template image. The size is not greater than the ``image`` size. The type is the same as ``image`` . - :param result: Result image. The size and type is the same as ``image`` . + :param result: Result image. If ``image`` is *W x H* and ``templ`` is *w x h*, then ``result`` must be *W-w+1 x H-h+1*. :param ccorr: Flags to evaluate cross-correlation instead of convolution.