ImageTColor, TDepthAvgSdv Method (TColor, MCvScalar, ImageGray, Byte) |
http://www.emgu.com
Calculates the average value and standard deviation of array elements, independently for each channel
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic void AvgSdv(
out TColor average,
out MCvScalar sdv,
Image<Gray, byte> mask
)
Public Sub AvgSdv (
<OutAttribute> ByRef average As TColor,
<OutAttribute> ByRef sdv As MCvScalar,
mask As Image(Of Gray, Byte)
)
public:
void AvgSdv(
[OutAttribute] TColor% average,
[OutAttribute] MCvScalar% sdv,
Image<Gray, unsigned char>^ mask
)
member AvgSdv :
average : 'TColor byref *
sdv : MCvScalar byref *
mask : Image<Gray, byte> -> unit
Parameters
- average
- Type: TColor
The avg color - sdv
- Type: Emgu.CV.StructureMCvScalar
The standard deviation for each channel - mask
- Type: Emgu.CVImageGray, Byte
The operation mask
See Also