[][src]Function opencv::cudaarithm::multiply

pub fn multiply(
    src1: &dyn ToInputArray,
    src2: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    scale: f64,
    dtype: i32,
    stream: &mut Stream
) -> Result<()>

Computes a matrix-matrix or matrix-scalar per-element product.

Parameters

  • src1: First source matrix or scalar.
  • src2: Second source matrix or scalar.
  • dst: Destination matrix that has the same size and number of channels as the input array(s). The depth is defined by dtype or src1 depth.
  • scale: Optional scale factor.
  • dtype: Optional depth of the output array.
  • stream: Stream for the asynchronous version.

See also

multiply

C++ default parameters

  • scale: 1
  • dtype: -1
  • stream: Stream::Null()