Click or drag to resize
Accord.NET (logo)

LocalBinaryPattern Constructor

Initializes a new instance of the LocalBinaryPattern class.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public LocalBinaryPattern(
	int blockSize = 3,
	int cellSize = 6,
	bool normalize = true
)
Request Example View Source

Parameters

blockSize (Optional)
Type: SystemInt32
The size of a block, measured in cells. Default is 3.
cellSize (Optional)
Type: SystemInt32
The size of a cell, measured in pixels. If set to zero, the entire image will be used at once, forming a single block. Default is 6.
normalize (Optional)
Type: SystemBoolean
Whether to normalize generated histograms. Default is true.
See Also