|
Haralick Constructor (Int32, Boolean, CooccurrenceDegree)
|
Initializes a new instance of the
Haralick class.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public Haralick(
int cellSize,
bool normalize,
params CooccurrenceDegree[] degrees
)
Public Sub New (
cellSize As Integer,
normalize As Boolean,
ParamArray degrees As CooccurrenceDegree()
)
Request Example
View SourceParameters
- cellSize
- Type: SystemInt32
The size of a computing cell, measured in pixels.
Default is 0 (use whole image at once). - normalize
- Type: SystemBoolean
Whether to normalize generated
histograms. Default is true. - degrees
- Type: Accord.ImagingCooccurrenceDegree
The angulation degrees on which the Haralick's
features should be computed. Default is to use all directions.
See Also