Table of Contents

Method Multiply

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Multiply(InputArray, InputArray, OutputArray, double, int)

Calculates the per-element scaled product of two arrays

public static void Multiply(InputArray src1, InputArray src2, OutputArray dst, double scale = 1, int dtype = -1)

Parameters

src1 InputArray

The first source array

src2 InputArray

The second source array of the same size and the same type as src1

dst OutputArray

The destination array; will have the same size and the same type as src1

scale double

The optional scale factor. [By default this is 1]

dtype int