Click or drag to resize

CvInvokeAccumulateProduct Method

http://www.emgu.com
Adds product of 2 images or thier selected regions to accumulator acc

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void AccumulateProduct(
	IInputArray src1,
	IInputArray src2,
	IInputOutputArray dst,
	IInputArray mask = null
)

Parameters

src1
Type: Emgu.CVIInputArray
First input image, 1- or 3-channel, 8-bit or 32-bit floating point (each channel of multi-channel image is processed independently)
src2
Type: Emgu.CVIInputArray
Second input image, the same format as the first one
dst
Type: Emgu.CVIInputOutputArray
Accumulator of the same number of channels as input images, 32-bit or 64-bit floating-point
mask (Optional)
Type: Emgu.CVIInputArray
Optional operation mask
See Also