标签: python opencv numpy python-imaging-library
我正在比较两张图片。如果比较失败,那么我想为这两个生成差异图像。用Python做。应该是最快的解决方案。
答案 0 :(得分:2)
希望这有帮助
import ImageChops def equal(image1, image2): return ImageChops.difference(image1, image2)
Link found here