Click or drag to resize
Accord.NET (logo)

HaralickDescriptorDictionaryNormalize Method

Combines features generated from different GLCMs computed using different angulations by averaging them into a single vector, normalizing them to be between -1 and 1.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public double[] Normalize(
	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 averaged and normalized 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 n. All features will be averaged, and the mean will be scaled to be in a [-1,1] interval.
See Also