Merge pull request #2664 from mapnik/zero-visual-pixel-threshold
drop pixel threshold to 0 - refs #2662 and #2663
|
@ -10,15 +10,9 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import simplejson as json
|
import simplejson as json
|
||||||
|
|
||||||
COMPUTE_THRESHOLD = 16
|
|
||||||
|
|
||||||
# testcase images are generated on OS X
|
# returns true if pixels are not nearly identical
|
||||||
# so they should exactly match
|
def compare_pixels(pixel1, pixel2, alpha=True, pixel_threshold=0):
|
||||||
if platform.uname()[0] == 'Darwin':
|
|
||||||
COMPUTE_THRESHOLD = 2
|
|
||||||
|
|
||||||
# returns true if pixels are not identical
|
|
||||||
def compare_pixels(pixel1, pixel2, alpha=True):
|
|
||||||
if pixel1 == pixel2:
|
if pixel1 == pixel2:
|
||||||
return False
|
return False
|
||||||
r_diff = abs((pixel1 & 0xff) - (pixel2 & 0xff))
|
r_diff = abs((pixel1 & 0xff) - (pixel2 & 0xff))
|
||||||
|
@ -26,15 +20,15 @@ def compare_pixels(pixel1, pixel2, alpha=True):
|
||||||
b_diff = abs(((pixel1 >> 16) & 0xff)- ((pixel2 >> 16) & 0xff))
|
b_diff = abs(((pixel1 >> 16) & 0xff)- ((pixel2 >> 16) & 0xff))
|
||||||
if alpha:
|
if alpha:
|
||||||
a_diff = abs(((pixel1 >> 24) & 0xff) - ((pixel2 >> 24) & 0xff))
|
a_diff = abs(((pixel1 >> 24) & 0xff) - ((pixel2 >> 24) & 0xff))
|
||||||
if(r_diff > COMPUTE_THRESHOLD or
|
if(r_diff > pixel_threshold or
|
||||||
g_diff > COMPUTE_THRESHOLD or
|
g_diff > pixel_threshold or
|
||||||
b_diff > COMPUTE_THRESHOLD or
|
b_diff > pixel_threshold or
|
||||||
a_diff > COMPUTE_THRESHOLD):
|
a_diff > pixel_threshold):
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
if(r_diff > COMPUTE_THRESHOLD or
|
if(r_diff > pixel_threshold or
|
||||||
g_diff > COMPUTE_THRESHOLD or
|
g_diff > pixel_threshold or
|
||||||
b_diff > COMPUTE_THRESHOLD):
|
b_diff > pixel_threshold):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@ -47,6 +41,7 @@ def compare(actual, expected, alpha=True):
|
||||||
delta_pixels = (im2.width() * im2.height()) - pixels
|
delta_pixels = (im2.width() * im2.height()) - pixels
|
||||||
if delta_pixels != 0:
|
if delta_pixels != 0:
|
||||||
return delta_pixels
|
return delta_pixels
|
||||||
|
# TODO: convert to C++ to speed this up
|
||||||
for x in range(0,im1.width(),2):
|
for x in range(0,im1.width(),2):
|
||||||
for y in range(0,im1.height(),2):
|
for y in range(0,im1.height(),2):
|
||||||
if compare_pixels(im1.get_pixel(x,y),im2.get_pixel(x,y),alpha=alpha):
|
if compare_pixels(im1.get_pixel(x,y),im2.get_pixel(x,y),alpha=alpha):
|
||||||
|
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 207 B |
Before Width: | Height: | Size: 221 B After Width: | Height: | Size: 221 B |
Before Width: | Height: | Size: 145 B After Width: | Height: | Size: 145 B |
Before Width: | Height: | Size: 151 B After Width: | Height: | Size: 151 B |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |