Computes mean value and standard deviation

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void MeanStdDev(
	IntPtr mtx,
	ref MCvScalar mean,
	ref MCvScalar stddev
)
Public Shared Sub MeanStdDev ( _
	mtx As IntPtr, _
	ByRef mean As MCvScalar, _
	ByRef stddev As MCvScalar _
)
public:
static void MeanStdDev(
	IntPtr mtx, 
	MCvScalar% mean, 
	MCvScalar% stddev
)

Parameters

mtx
IntPtr
The GpuMat. Supports only CV_8UC1 type
mean
MCvScalar%
The mean value
stddev
MCvScalar%
The standard deviation

See Also