Calculates the average value and standard deviation of array elements, independently for each channel

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public void AvgSdv(
	out TColor average,
	out MCvScalar sdv,
	Image<Gray, byte> mask
)
Visual Basic (Declaration)
Public Sub AvgSdv ( _
	<OutAttribute> ByRef average As TColor, _
	<OutAttribute> ByRef sdv As MCvScalar, _
	mask As Image(Of Gray, Byte) _
)
Visual C++
public:
void AvgSdv(
	[OutAttribute] TColor% average, 
	[OutAttribute] MCvScalar% sdv, 
	Image<Gray, unsigned char>^ mask
)

Parameters

average
Type: TColor %
The avg color
sdv
Type: Emgu.CV.Structure..::.MCvScalar %
The standard deviation for each channel
mask
Type: Emgu.CV..::.Image<(Of <(Gray, Byte>)>)
The operation mask

See Also