Click or drag to resize
Accord.NET (logo)

HaralickDescriptorDictionaryAverageWithRange Method

Combines features generated from different GLCMs computed using different angulations by averaging them into a single vector.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public double[] AverageWithRange(
	int features
)
Request Example View Source

Parameters

features
Type: SystemInt32
The number of Haralick's original features to compute.

Return Value

Type: Double
A single vector containing the average of the values computed from the different HaralickDescriptors.
Remarks
If there are ddegrees in this collection, and nfeatures given to compute, the generated vector will have size 2*n*d. Each even index will have the average of a given feature, and the subsequent odd index will contain the range of this feature.
See Also