比较Python中的两个PIL图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了比较Python中的两个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))
以上是关于比较Python中的两个PIL图像的主要内容,如果未能解决你的问题,请参考以下文章
python----图像简单处理(PIL or Pillow)