Enum ImageComparisonSettings.PixelTests
The image comparison pixel tests that are available. These tests are used to determine whether an individual pixel is correct or not. An incorrect pixel will increase the counter associated with the IncorrectPixelsCount image test. This is only relevant when ActiveImageTests has the IncorrectPixelsCount flag set.
Namespace: UnityEngine.TestTools.Graphics
Assembly: UnityEngine.TestTools.Graphics.dll
Syntax
[Flags]
public enum ImageComparisonSettings.PixelTests
Fields
| Name | Description |
|---|---|
| DeltaAlpha | The delta alpha test is active. This test compares the alpha value of the individual pixels of the images. If the alpha value is above the specified threshold, the pixel is considered incorrect. |
| DeltaE | The deltaE test is active. This test compares the deltaE value of the individual pixels of the images. If the deltaE value is above the specified threshold, the pixel is considered incorrect. |
| DeltaGamma | The delta gamma test is active. This test compares the gamma value of the individual pixels of the images. If the gamma value is above the specified threshold, the pixel is considered incorrect. |
| None | No pixel tests are active. |