Enum ColorComparisonGranularity
Defines the granularity at which color similarity is assessed within an image.
Namespace: EyeAuras.OpenCVAuras.Triggers.ColorSearch
Assembly: EyeAuras.OpenCVAuras.Metadata.dll
Syntax
public enum ColorComparisonGranularity
Fields
Name | Description |
---|---|
AverageBlock16By16 | Compares the target color to the average color within small, localized 16x16 pixel blocks of the image. |
AverageBlock2By2 | Compares the target color to the average color within small, localized 2x2 pixel blocks of the image. |
AverageBlock32By32 | Compares the target color to the average color within small, localized 32x32 pixel blocks of the image. |
AverageBlock4By4 | Compares the target color to the average color within small, localized 4x4 pixel blocks of the image. |
AverageBlock4By8 | Compares the target color to the average color within small, localized 4x8 pixel blocks of the image. |
AverageBlock8By4 | Compares the target color to the average color within small, localized 8x4 pixel blocks of the image. |
AverageBlock8By8 | Compares the target color to the average color within small, localized 8x8 pixel blocks of the image. |
EntireArea | Compares the target color to the aggregate average color of the entire image. |
IndividualPixel | Compares the target color to the color of each individual pixel within the image. |