Komentar Analisis La Difrence De Pixel Entre Deux Gambar Python

import Image
import ImageChops

im1 = Image.open("splash.png")
im2 = Image.open("splash2.png")

diff = ImageChops.difference(im2, im1)
Poised Pig