Enum ImageComparisonSettings.ImageTests
The image comparison tests that are available. These tests are used to determine whether the images are equal or not.
Namespace: UnityEngine.TestTools.Graphics
Assembly: UnityEngine.TestTools.Graphics.dll
Syntax
[Flags]
public enum ImageComparisonSettings.ImageTests
Fields
| Name | Description |
|---|---|
| AverageDeltaE | The average deltaE test is active. This test compares the average deltaE value of the images. If the average deltaE value is above the specified threshold, the images are considered not to be equal. |
| IncorrectPixelsCount | The incorrect pixels count test is active. This test counts the number of incorrect pixels in the images. If the number of incorrect pixels is above the specified threshold, the images are considered not to be equal. |
| None | No image tests are active. |
| RMSE | The root mean squared error test is active. This test compares the root mean squared error value of the images. If the root mean squared error value is above the specified threshold, the images are considered not to be equal. |