Skip to main content

Image Hashing library

Project description

A image hashing library written in Python. ImageHash supports:

  • average hashing (aHash)

  • perception hashing (pHash)

  • difference hashing (dHash)

  • wavelet hashing (wHash)

  • HSV color hash (colorhash)

Travis Coveralls

Rationale

Image hashes tell whether two images look nearly identical. This is different from cryptographic hashing algorithms (like md5, sha-1) where tiny changes in the image give completely different hashes. In image fingerprinting, we actually want our similar inputs to have similar output hashes as well.

The image hash algorithms (average, perception, difference, wavelet) analyse the image structure on luminence (without color information). The color hash algorithm analyses the color distribution and black & gray fractions (without position information).

Requirements

Based on PIL/Pillow Image, numpy and scipy.fftpack (for pHash) Easy installation through pypi:

pip install imagehash

Basic usage

>>> from PIL import Image
>>> import imagehash
>>> hash = imagehash.average_hash(Image.open('test.png'))
>>> print(hash)
d879f8f89b1bbf
>>> otherhash = imagehash.average_hash(Image.open('other.bmp'))
>>> print(otherhash)
ffff3720200ffff
>>> print(hash == otherhash)
False
>>> print(hash - otherhash)
36

The demo script find_similar_images illustrates how to find similar images in a directory.

Source hosted at github: https://github.com/JohannesBuchner/imagehash

Example results

To help evaluate how different hashing algorithms behave, below are a few hashes applied to two datasets. This will let you know what images an algorithm thinks are basically identical. For understanding hash distances, check out these excellent blog posts:

The first dataset is a collection of 7441 free icons on github (see examples/github-urls.txt). The following pages show groups of images with the same hash (the hashing method sees them as the same).

The second dataset is a collection of 109259 art pieces from parismuseescollections.paris.fr/en/recherche/image-libre/.

The following pages show groups of images with the same hash (the hashing method sees them as the same).

You may want to adjust the hashsize or require some manhattan distance (hash1 - hash2 < threshold).

Other projects

Contributing

Pull requests and new features are welcome.

If you encounter a bug or have a question, please open a Github issue. You can also try stackoverflow.

Changelog

  • 4.1: add examples and colorhash

  • 4.0: Changed binary to hex implementation, because the previous one was broken for various hash sizes. This change breaks compatibility to previously stored hashes; to convert them from the old encoding, use the “old_hex_to_hash” function.

  • 3.5: image data handling speed-up

  • 3.2: whash now also handles smaller-than-hash images

  • 3.0: dhash had a bug: It computed pixel differences vertically, not horizontally.

    I modified it to follow dHash. The old function is available as dhash_vertical.

  • 2.0: added whash

  • 1.0: initial ahash, dhash, phash implementations.

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

ImageHash-4.1.0.tar.gz (291.9 kB view details)

Uploaded Source

File details

Details for the file ImageHash-4.1.0.tar.gz.

File metadata

  • Download URL: ImageHash-4.1.0.tar.gz
  • Upload date:
  • Size: 291.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for ImageHash-4.1.0.tar.gz
Algorithm Hash digest
SHA256 978e25d3df66ae8fa4fb24542e46cea6d0724f02c0c760b2de4931a54d5c7482
MD5 b51b770e6ae71e0fec62a3697813ba3d
BLAKE2b-256 1a5dcc81830be3c4705a46cdbca74439b67f1017881383ba0127c41c4cecb7b3

See more details on using hashes here.

Supported by

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