Home
last modified time | relevance | path

Searched refs:diff_image (Results 1 – 3 of 3) sorted by relevance

/external/autotest/client/cros/image_comparison/
Drgb_image_comparer.py64 diff_image = ImageChops.difference(golden_image, test_image)
65 maxcolors = diff_image.size[0] * diff_image.size[1]
66 colorstuples = diff_image.getcolors(maxcolors)
/external/autotest/client/cros/chameleon/
Dscreen_comparison.py89 diff_image = ImageChops.difference(*images)
90 histogram = diff_image.convert('L').histogram()
128 diff_image = ImageChops.difference(*images)
129 gray_image = diff_image.convert('L')
/external/pdfium/samples/
Dimage_diff.cc295 Image diff_image; in DiffImages() local
296 bool same = CreateImageDiff(baseline_image, actual_image, &diff_image); in DiffImages()
302 diff_image.data(), diff_image.w(), diff_image.h(), in DiffImages()
303 diff_image.w() * 4, &png_encoding); in DiffImages()