Click or drag to resize

CvInvokeMultiply Method

http://www.emgu.com
Calculates per-element product of two arrays: dst(I)=scale*src1(I)*src2(I) All the arrays must have the same type, and the same size (or ROI size)

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 Multiply(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst,
	double scale = 1,
	DepthType dtype = DepthType.Default
)

Parameters

src1
Type: Emgu.CVIInputArray
The first source array.
src2
Type: Emgu.CVIInputArray
The second source array
dst
Type: Emgu.CVIOutputArray
The destination array
scale (Optional)
Type: SystemDouble
Optional scale factor
dtype (Optional)
Type: Emgu.CV.CvEnumDepthType
Optional depth of the output array
See Also