Searched refs:roughness (Results 1 - 2 of 2) sorted by relevance

/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/image/
H A DRoughImageComparator.java34 double roughness = .0; field in class:RoughImageComparator
37 * Creates a comparator with {@code roughness} allowed roughness.
39 * @param roughness Allowed comparision roughness.
41 public RoughImageComparator(double roughness) { argument
42 this.roughness = roughness;
46 * Compares two images with allowed roughness.
51 * pixels less or equal to <code>image1.getWidth() * image1.getHeight() * roughness<cod
[all...]
H A DRoughImageFinder.java35 double roughness = .0; field in class:RoughImageFinder
41 * parameter with some "roughness".
44 * @param roughness - Allowed
46 public RoughImageFinder(BufferedImage area, double roughness) { argument
47 this.roughness = roughness;
63 * @return Point where number of unmatching pixels less or equal to <code>image1.getWidth() * image1.getHeight() * roughness<code>
75 double maxRoughPixels = (double) (smallWidth * smallHeight) * roughness;

Completed in 119 milliseconds