cv.multiply - MATLAB File Help
cv.multiply

Calculates the per-element scaled product of two arrays

dst = cv.multiply(src1, src2)
dst = cv.multiply(src1, src2, 'OptionName',optionValue, ...)

Input

Output

Options

The function cv.multiply calculates the per-element product of two arrays:

dst(I) = saturate(scale*src1(I) * src2(I))

Note: Saturation is not applied when the output array has the depth int32. You may even get result of an incorrect sign in the case of overflow.

See also