[][src]Function opencv::core::min_umat_to

pub fn min_umat_to(src1: &UMat, src2: &UMat, dst: &mut UMat) -> Result<()>

Calculates per-element minimum of two arrays or an array and a scalar.

The function cv::min calculates the per-element minimum of two arrays: block formula or array and a scalar: block formula

Parameters

  • src1: first input array.
  • src2: second input array of the same size and type as src1.
  • dst: output array of the same size and type as src1.

See also

max, compare, inRange, minMaxLoc

Overloaded parameters

needed to avoid conflicts with const _Tp& std::min(const _Tp&, const _Tp&, _Compare)