[][src]Function opencv::cudaarithm::min

pub fn min(
    src1: &dyn ToInputArray,
    src2: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    stream: &mut Stream
) -> Result<()>

Computes the per-element minimum of two matrices (or a matrix and a scalar).

Parameters

  • src1: First source matrix or scalar.
  • src2: Second source matrix or scalar.
  • dst: Destination matrix that has the same size and type as the input array(s).
  • stream: Stream for the asynchronous version.

See also

min

C++ default parameters

  • stream: Stream::Null()