[This is preliminary documentation and is subject to change.]

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.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void AvgSdv(
	out TColor avg,
	out MCvScalar sdv
)
Public Sub AvgSdv ( _
	<OutAttribute> ByRef avg As TColor, _
	<OutAttribute> ByRef sdv As MCvScalar _
)
public:
void AvgSdv(
	[OutAttribute] TColor% avg, 
	[OutAttribute] MCvScalar% sdv
)

Parameters

avg
TColor %
The avg color
sdv
MCvScalar %
The standard deviation for each channel

See Also