有一个OSS项目,该项目使用WebDriver拍摄屏幕快照,然后比较图像以查看是否存在任何问题(http://pre.google.com/p/fighting-
layout-bugs/))。通过将文件打开到流中,然后比较每个位来完成此 *** 作。
您也许可以使用PIL做类似的事情。
编辑:
经过更多研究,我发现
h1 = Image.open("image1").histogram()h2 = Image.open("image2").histogram()rms = math.sqrt(reduce(operator.add, map(lambda a,b: (a-b)**2, h1, h2))/len(h1))
在http://snipplr.com/view/757/compare-two-pil-images-in-
python/和http://effbot.org/zone/pil-comparing-
images.htm上
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)