LinearBinaryPattern
Creates histogram and map of Linear Binary Patterns (with radius 1 and size 8) of provided image.
Syntax
C++
C#
Python
def LinearBinaryPattern( inImage: Image, outPatternHistogram: Histogram, outTextureImage: Image, /, *, inRoi: Region | None = None, inPatternType: LinearBinaryPatternType = LinearBinaryPatternType.Plain ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inImage | Image | Mono-channel image. | |
![]() |
inRoi | Region | None | None | Region of Interest. |
![]() |
inPatternType | LinearBinaryPatternType | LinearBinaryPatternType.Plain | Type of LBP to produce. |
![]() |
outPatternHistogram | Histogram | Histogram of LBP codes found in inImage. | |
![]() |
outTextureImage | Image | LBP map of input image. |


