Click or drag to resize

CudaConvolutionConvolve Method

http://www.emgu.com
Computes a convolution (or cross-correlation) of two images.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public void Convolve(
	IInputArray image,
	IInputArray templ,
	IOutputArray result,
	bool ccorr,
	Stream stream = null
)

Parameters

image
Type: Emgu.CVIInputArray
Source image. Only CV_32FC1 images are supported for now.
templ
Type: Emgu.CVIInputArray
Template image. The size is not greater than the image size. The type is the same as image .
result
Type: Emgu.CVIOutputArray
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.
ccorr
Type: SystemBoolean
Flags to evaluate cross-correlation instead of convolution.
stream (Optional)
Type: Emgu.CV.CudaStream
Stream for the asynchronous version
See Also