|
UnsafeToolsVariance Method
|
Computes the pixel variance
within a given image region.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public static double Variance(
byte* src,
int width,
int height,
int stride,
double mean
)
Visual Basic does not support APIs that consume or return unsafe types.
Request Example
View SourceParameters
- src
- Type: SystemByte*
The image region. - width
- Type: SystemInt32
The region width. - height
- Type: SystemInt32
The region height. - stride
- Type: SystemInt32
The image stride. - mean
- Type: SystemDouble
The region pixel mean.
Return Value
Type:
DoubleThe variance value within the region.
See Also