pub fn mean_std_dev_1_def(
mtx: &impl ToInputArray,
dst: &mut impl ToOutputArray,
) -> Result<()>Expand description
@overload
§Parameters
- mtx: Source matrix. CV_8UC1 and CV_32FC1 matrices are supported for now.
- dst: Target GpuMat with size 1x2 and type CV_64FC1. The first value is mean, the second - stddev.
- stream: Stream for the asynchronous version.
§Note
This alternative version of mean_std_dev_1 function uses the following default values for its arguments:
- stream: Stream::Null()