Skip to main content

A pixel-level image comparison library. Python port of https://github.com/mapbox/pixelmatch

Project description

pixelmatch-py

Python port of https://github.com/mapbox/pixelmatch.

A fast pixel-level image comparison library, originally created to compare screenshots in tests.

Features accurate anti-aliased pixels detection and perceptual color difference metrics.

from pixelmatch import pixelmatch

num_diff_pixels = pixelmatch(img1, img2, 800, 600, diff, {
  'threshold': 0.1
})

Implements ideas from the following papers:

Install

pip install pixelmatch

API

pixelmatch(img1, img2, width, height[output, options])

  • img1, img2 — RGBA Image data of the images to compare. Note: image dimensions must be equal.

  • width, height — Width and height of the images.

  • output — Image data to write the diff to, or None if don't need a diff image. Note that all three images need to have the same dimensions. options is a dict with the following properties:

  • threshold — Matching threshold, ranges from 0 to 1. Smaller values make the comparison more sensitive. 0.1 by default.

  • includeAA — If true, disables detecting and ignoring anti-aliased pixels. false by default.

  • alpha — Blending factor of unchanged pixels in the diff output. Ranges from 0 for pure white to 1 for original brightness. 0.1 by default.

  • aa_color — The color of anti-aliased pixels in the diff output in [R, G, B] format. [255, 255, 0] by default.

  • diff_color — The color of differing pixels in the diff output in [R, G, B] format. [255, 0, 0] by default.

  • diff_mask — Draw the diff over a transparent background (a mask), rather than over the original image. Will not draw anti-aliased pixels (if detected).

Compares two images, writes the output diff and returns the number of mismatched pixels.

Example usage

PIL

from PIL import Image

from pixelmatch import pixelmatch


def pil_to_flatten_data(img):
    """
    Convert data from [(R1, G1, B1, A1), (R2, G2, B2, A2)] to [R1, G1, B1, A1, R2, G2, B2, A2]
    """
    return [x for p in img.convert("RGBA").getdata() for x in p]

img_a = Image.open("a.png")
img_b = Image.open("b.png")
width, height = img_a.size

data_a = pil_to_flatten_data(img_a)
data_b = pil_to_flatten_data(img_b)
data_diff = [0] * len(data_a)

mismatch = pixelmatch(data_a, data_b, width, height, data_diff, {
    "includeAA": True
})

img_diff = Image.new("RGBA", img_a.size)

def flatten_data_to_pil(data):
    return list(zip(data[::4], data[1::4], data[2::4], data[3::4]))

img_diff.putdata(flatten_data_to_pil(data_diff))
img_diff.save("diff.png")

Example output

expected actual diff
1diff
1diff
1diff
1diff

Changelog

v0.1.1

  • fix: fix bug in fast path #18

v0.1.0

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pixelmatch-0.1.1.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

pixelmatch-0.1.1-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file pixelmatch-0.1.1.tar.gz.

File metadata

  • Download URL: pixelmatch-0.1.1.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for pixelmatch-0.1.1.tar.gz
Algorithm Hash digest
SHA256 e35a5a4563ddd9ceea1fe9e22d628e9d47ec30d64b602691cc6a8ca17e5ec830
MD5 d705fe7ce9f110d673851fdd80b9cb08
BLAKE2b-256 3fd8f3790bc1f2bf4f5acb391e9db1cfd591124b6e1ce3e989e5b8871703aa22

See more details on using hashes here.

File details

Details for the file pixelmatch-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pixelmatch-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for pixelmatch-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cf02670dda2a74c761656f8abb7b4ecbb08e97136e35b9f1adb47123cd145f65
MD5 76425bc54dd7f8af59f6b8019b718e1f
BLAKE2b-256 7844a39b581641e7a1a9240450b173b0955048b130b4942823ef337bd269d8b5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page