[][src]Function opencv::core::mean

pub fn mean(src: &dyn ToInputArray, mask: &dyn ToInputArray) -> Result<Scalar>

Calculates an average (mean) of array elements.

The function cv::mean calculates the mean value M of array elements, independently for each channel, and return it: block formula When all the mask elements are 0's, the function returns Scalar::all(0)

Parameters

  • src: input array that should have from 1 to 4 channels so that the result can be stored in Scalar_ .
  • mask: optional operation mask.

See also

countNonZero, meanStdDev, norm, minMaxLoc

C++ default parameters

  • mask: noArray()