Skip to main content

Image Hashing library

Project description

An image hashing library written in Python. ImageHash supports:

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, perceptual, difference, wavelet) analyse the image structure on luminance (without color information). The color hash algorithm analyses the color distribution and black & gray fractions (without position information).

Installation

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

Each algorithm can also have its hash size adjusted (or in the case of colorhash, its binbits). Increasing the hash size allows an algorithm to store more detail in its hash, increasing its sensitivity to changes in detail.

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

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

Examples

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.

Example 1: Icon dataset

Source: 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 hashes use hashsize=8; colorhash uses binbits=3. You may want to adjust the hashsize or require some manhattan distance (hash1 - hash2 < threshold).

Example 2: Art dataset

Source: 109259 art pieces from http://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).

For understanding hash distances, check out these excellent blog posts:

Contributing

Pull requests and new features are warmly welcome.

If you encounter a bug or have a question, please open a GitHub issue. You can also try Stack Overflow.

Changelog

  • 4.2: Cropping-Resistant image hashing added by @joshcoales

  • 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 dHashref. The old function is available as dhash_vertical.

  • 2.0: Added whash

  • 1.0: Initial ahash, dhash, phash implementations.

Other projects

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.2.0.tar.gz (812.4 kB view details)

Uploaded Source

Built Distributions

ImageHash-4.2.0-py3.8.egg (303.3 kB view details)

Uploaded Egg

ImageHash-4.2.0-py2.py3-none-any.whl (295.1 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: ImageHash-4.2.0.tar.gz
  • Upload date:
  • Size: 812.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for ImageHash-4.2.0.tar.gz
Algorithm Hash digest
SHA256 a969a806cb704a1a88a459a2c53adf87c01b477604b4f25d565cf0f7a49ef14d
MD5 e03ac2bd66c7a5dfe78adef3d26b6a08
BLAKE2b-256 cea2cb75a2d7d81849c1eae5514d00b2a906fadf2b96495b9d6a7c2ff4b6335b

See more details on using hashes here.

File details

Details for the file ImageHash-4.2.0-py3.8.egg.

File metadata

  • Download URL: ImageHash-4.2.0-py3.8.egg
  • Upload date:
  • Size: 303.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for ImageHash-4.2.0-py3.8.egg
Algorithm Hash digest
SHA256 331c383a2fc35d622e49b7391e49596dcec35ad358221eae394a9db6c56e69a4
MD5 3d2c4912ac4e9ea9b0bbf46cd042666c
BLAKE2b-256 fbd11e4a6f1ac1e109c7ac1e0573c65d416af07ac092328390cf6792d44a8474

See more details on using hashes here.

File details

Details for the file ImageHash-4.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: ImageHash-4.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 295.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for ImageHash-4.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ce6c97695810f1a78da68f9e422cee8a5ed986b73398149bb015741495add656
MD5 241cc3d8ac11abcb905975b5ce2e4022
BLAKE2b-256 8e189dbb772b5ef73a3069c66bb5bf29b9fb4dd57af0d5790c781c3f559bcca6

See more details on using hashes here.

Supported by

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