Click or drag to resize

Cv2Multiply Method

Calculates the per-element scaled product of two arrays

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax
public static void Multiply(
	InputArray src1,
	InputArray src2,
	OutputArray dst,
	double scale = 1,
	int dtype = -1
)

Parameters

src1
Type: OpenCvSharpInputArray
The first source array
src2
Type: OpenCvSharpInputArray
The second source array of the same size and the same type as src1
dst
Type: OpenCvSharpOutputArray
The destination array; will have the same size and the same type as src1
scale (Optional)
Type: SystemDouble
The optional scale factor. [By default this is 1]
dtype (Optional)
Type: SystemInt32
See Also