http://www.emgu.com
Computes mean value and standard deviation

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

Syntax

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

Parameters

mtx
Type: System..::..IntPtr
The GpuMat. Supports only CV_8UC1 type
mean
Type: Emgu.CV.Structure..::..MCvScalar%
The mean value
stddev
Type: Emgu.CV.Structure..::..MCvScalar%
The standard deviation

See Also