Adds the per-element product of two input images to the accumulator.
Namespace: OpenCvSharp.CPlusPlus
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void AccumulateProduct( InputArray src1, InputArray src2, InputOutputArray dst, InputArray mask )
Parameters
- src1
- Type: OpenCvSharp.CPlusPlusInputArray
First input image, 1- or 3-channel, 8-bit or 32-bit floating point. - src2
- Type: OpenCvSharp.CPlusPlusInputArray
Second input image of the same type and the same size as src1 - dst
- Type: OpenCvSharp.CPlusPlusInputOutputArray
Accumulator with the same number of channels as input images, 32-bit or 64-bit floating-point. - mask
- Type: OpenCvSharp.CPlusPlusInputArray
Optional operation mask.
See Also