multiply function

Mat multiply(
  1. InputArray src1,
  2. InputArray src2, {
  3. OutputArray? dst,
  4. double scale = 1,
  5. int dtype = -1,
})

Multiply calculates the per-element scaled product of two arrays. Both input arrays must be of the same size and the same type.

For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#ga979d898a58d7f61c53003e162e7ad89f

Implementation

Mat multiply(InputArray src1, InputArray src2, {OutputArray? dst, double scale = 1, int dtype = -1}) {
  dst ??= Mat.empty();
  cvRun(() => ccore.cv_multiply(src1.ref, src2.ref, dst!.ref, scale, dtype, ffi.nullptr));
  return dst;
}