|
LocalBinaryPattern Constructor
|
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
)
Public Sub New (
Optional blockSize As Integer = 3,
Optional cellSize As Integer = 6,
Optional normalize As Boolean = true
)
Request Example
View SourceParameters
- 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