Click or drag to resize
Accord.NET (logo)

HaralickDescriptorDictionaryCombine Method

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

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public double[] Combine(
	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 all 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 d * n. All features from different degrees will be concatenated into this single result vector.
See Also