LDTP
3.5.0
|
imagecompare(imgfile1, imgfile2)
Compares two images and returns difference of them in percentage. If PIL package is not installed, LdtpExecutionError exception will be thrown.
difference | in percentage on successful image comaprison, else LdtpExecutionError exception |
Note: Script designer can decide the pass / fail criteria based on the diff percentage.
Refer: Linux: http://cgit.freedesktop.org/ldtp/ldtp2/tree/ldtputils/__init__.py
from ldtputils import *
imagecompare('in.jpg', 'out.jpg') # Assuming that in.jpg and out.jpg are in current directory. File path should be absolute path.
Python Imaging Library - Linux: http://www.pythonware.com/products/pil/