-
- All Superinterfaces:
ColorMatcher
- All Known Implementing Classes:
PixelMatcherBase,PixelMatcherRgb
public interface PixelMatcher extends ColorMatcher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WritableImagecreateEmptyMatchImage(Image image0, Image image1)ColorcreateMatchColor(Color color0, Color color1)Creates a color that represents a match between the two images' pixels.ColorcreateNonMatchColor(Color color0, Color color1)Creates a color that represents a mismatch between the two images' pixels.PixelMatcherResultmatch(Image image0, Image image1)Returns aPixelMatcherResultthat indicates how similar/dissimilar the two images were.-
Methods inherited from interface org.testfx.service.support.ColorMatcher
matchColors
-
-
-
-
Method Detail
-
match
PixelMatcherResult match(Image image0, Image image1)
Returns aPixelMatcherResultthat indicates how similar/dissimilar the two images were.
-
createEmptyMatchImage
WritableImage createEmptyMatchImage(Image image0, Image image1)
-
createMatchColor
Color createMatchColor(Color color0, Color color1)
Creates a color that represents a match between the two images' pixels.
-
-