ImageHash


NameImageHash JSON
Version 4.3.1 PyPI version JSON
download
home_pagehttps://github.com/JohannesBuchner/imagehash
SummaryImage Hashing library
upload_time2022-09-28 08:44:39
maintainer
docs_urlNone
authorJohannes Buchner
requires_python
license2-clause BSD License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ===========
ImageHash
===========

An image hashing library written in Python. ImageHash supports:

* Average hashing
* Perceptual hashing
* Difference hashing
* Wavelet hashing
* HSV color hashing (colorhash)
* Crop-resistant hashing

|CI|_ |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('tests/data/imagehash.png'))
	>>> print(hash)
	ffd7918181c9ffff
	>>> otherhash = imagehash.average_hash(Image.open('tests/data/peppers.png'))
	>>> print(otherhash)
	9f172786e71f1e00
	>>> print(hash == otherhash)
	False
	>>> print(hash - otherhash)  # hamming distance
	33

Each algorithm can also have its hash size adjusted (or in the case of
colorhash, its :code:`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

References
-----------

* Average hashing (`aHashref`_)
* Perceptual hashing (`pHashref`_)
* Difference hashing (`dHashref`_)
* Wavelet hashing (`wHashref`_)
* Crop-resistant hashing (`crop_resistant_hashref`_)

.. _aHashref: http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html
.. _pHashref: http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html
.. _dHashref: http://www.hackerfactor.com/blog/index.php?/archives/529-Kind-of-Like-That.html
.. _wHashref: https://fullstackml.com/2016/07/02/wavelet-image-hash-in-python/
.. _pypi: https://pypi.python.org/pypi/ImageHash
.. _crop_resistant_hashref: https://ieeexplore.ieee.org/document/6980335

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).

* `phash <https://johannesbuchner.github.io/imagehash/index3.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/index9.html>`__)
* `dhash <https://johannesbuchner.github.io/imagehash/index4.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/index10.html>`__)
* `colorhash <https://johannesbuchner.github.io/imagehash/index7.html>`__
* `average_hash <https://johannesbuchner.github.io/imagehash/index2.html>`__ (`with z-transform <https://johannesbuchner.github.io/imagehash/index8.html>`__)

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).

* `phash <https://johannesbuchner.github.io/imagehash/art3.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/art9.html>`__)
* `dhash <https://johannesbuchner.github.io/imagehash/art4.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/art10.html>`__)
* `colorhash <https://johannesbuchner.github.io/imagehash/art7.html>`__
* `average_hash <https://johannesbuchner.github.io/imagehash/art2.html>`__ (`with z-transform <https://johannesbuchner.github.io/imagehash/art8.html>`__)

For understanding hash distances, check out these excellent blog posts:
* https://tech.okcupid.com/evaluating-perceptual-image-hashes-at-okcupid-e98a3e74aa3a
* https://content-blockchain.org/research/testing-different-image-hash-functions/

Storing hashes
==============

As illustrated above, hashes can be turned into strings.
The strings can be turned back into a ImageHash object as follows.

For single perceptual hashes::

	>>> original_hash = imagehash.phash(Image.open('tests/data/imagehash.png'))
	>>> hash_as_str = str(original_hash)
	>>> print(hash_as_str)
	ffd7918181c9ffff
	>>> restored_hash = imagehash.hex_to_hash(hash_as_str)
	>>> print(restored_hash)
	ffd7918181c9ffff
	>>> assert restored_hash == original_hash
	>>> assert str(restored_hash) == hash_as_str

For crop_resistant_hash::

	>>> original_hash = imagehash.crop_resistant_hash(Image.open('tests/data/imagehash.png'), min_segment_size=500, segmentation_image_size=1000)
	>>> hash_as_str = str(original_hash)
	>>> restored_hash = imagehash.hex_to_multihash(hash_as_str)
	>>> assert restored_hash == original_hash
	>>> assert str(restored_hash) == hash_as_str

For colorhash::

	>>> original_hash = imagehash.colorhash(Image.open('tests/data/imagehash.png'), binbits=3)
	>>> hash_as_str = str(original_hash)
	>>> restored_hash = imagehash.hex_to_flathash(hash_as_str, hashsize=3)

For storing the hashes in a database and using fast hamming distance
searches, see pointers at https://github.com/JohannesBuchner/imagehash/issues/127
(a blog post on how to do this would be a great contribution!)



Changelog
----------

* 4.3: typing annotations by @Avasam @SpangleLabs and @nh2

* 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.

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.

Other projects
==============

* http://blockhash.io/
* https://github.com/acoomans/instagram-filters
* https://pippy360.github.io/transformationInvariantImageSearch/
* https://www.phash.org/
* https://pypi.org/project/dhash/
* https://github.com/thorn-oss/perception (based on imagehash code, depends on opencv)
* https://docs.opencv.org/3.4/d4/d93/group__img__hash.html

.. |CI| image:: https://github.com/JohannesBuchner/imagehash/actions/workflows/testing.yml/badge.svg
.. _CI: https://github.com/JohannesBuchner/imagehash/actions/workflows/testing.yml

.. |Coveralls| image:: https://coveralls.io/repos/github/JohannesBuchner/imagehash/badge.svg
.. _Coveralls: https://coveralls.io/github/JohannesBuchner/imagehash



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JohannesBuchner/imagehash",
    "name": "ImageHash",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Johannes Buchner",
    "author_email": "buchner.johannes@gmx.at",
    "download_url": "https://files.pythonhosted.org/packages/6c/f4/9821fe373a4788bca43f00491b008f930de0b12a60ff631852d1f984b966/ImageHash-4.3.1.tar.gz",
    "platform": null,
    "description": "===========\nImageHash\n===========\n\nAn image hashing library written in Python. ImageHash supports:\n\n* Average hashing\n* Perceptual hashing\n* Difference hashing\n* Wavelet hashing\n* HSV color hashing (colorhash)\n* Crop-resistant hashing\n\n|CI|_ |Coveralls|_ \n\nRationale\n=========\n\nImage hashes tell whether two images look nearly identical.\nThis is different from cryptographic hashing algorithms (like MD5, SHA-1)\nwhere tiny changes in the image give completely different hashes. \nIn image fingerprinting, we actually want our similar inputs to have\nsimilar output hashes as well.\n\nThe image hash algorithms (average, perceptual, difference, wavelet)\nanalyse the image structure on luminance (without color information).\nThe color hash algorithm analyses the color distribution and \nblack & gray fractions (without position information).\n\nInstallation\n============\n\nBased on PIL/Pillow Image, numpy and scipy.fftpack (for pHash)\nEasy installation through `pypi`_::\n\n\tpip install imagehash\n\nBasic usage\n===========\n::\n\n\t>>> from PIL import Image\n\t>>> import imagehash\n\t>>> hash = imagehash.average_hash(Image.open('tests/data/imagehash.png'))\n\t>>> print(hash)\n\tffd7918181c9ffff\n\t>>> otherhash = imagehash.average_hash(Image.open('tests/data/peppers.png'))\n\t>>> print(otherhash)\n\t9f172786e71f1e00\n\t>>> print(hash == otherhash)\n\tFalse\n\t>>> print(hash - otherhash)  # hamming distance\n\t33\n\nEach algorithm can also have its hash size adjusted (or in the case of\ncolorhash, its :code:`binbits`). Increasing the hash size allows an\nalgorithm to store more detail in its hash, increasing its sensitivity\nto changes in detail.\n\nThe demo script **find_similar_images** illustrates how to find similar\nimages in a directory.\n\nSource hosted at GitHub: https://github.com/JohannesBuchner/imagehash\n\nReferences\n-----------\n\n* Average hashing (`aHashref`_)\n* Perceptual hashing (`pHashref`_)\n* Difference hashing (`dHashref`_)\n* Wavelet hashing (`wHashref`_)\n* Crop-resistant hashing (`crop_resistant_hashref`_)\n\n.. _aHashref: http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html\n.. _pHashref: http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html\n.. _dHashref: http://www.hackerfactor.com/blog/index.php?/archives/529-Kind-of-Like-That.html\n.. _wHashref: https://fullstackml.com/2016/07/02/wavelet-image-hash-in-python/\n.. _pypi: https://pypi.python.org/pypi/ImageHash\n.. _crop_resistant_hashref: https://ieeexplore.ieee.org/document/6980335\n\nExamples\n=========\n\nTo help evaluate how different hashing algorithms behave, below are a few hashes applied\nto two datasets. This will let you know what images an algorithm thinks are basically identical.\n\nExample 1: Icon dataset\n-----------------------\n\nSource: 7441 free icons on GitHub (see examples/github-urls.txt).\n\nThe following pages show groups of images with the same hash (the hashing method sees them as the same).\n\n* `phash <https://johannesbuchner.github.io/imagehash/index3.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/index9.html>`__)\n* `dhash <https://johannesbuchner.github.io/imagehash/index4.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/index10.html>`__)\n* `colorhash <https://johannesbuchner.github.io/imagehash/index7.html>`__\n* `average_hash <https://johannesbuchner.github.io/imagehash/index2.html>`__ (`with z-transform <https://johannesbuchner.github.io/imagehash/index8.html>`__)\n\nThe hashes use hashsize=8; colorhash uses binbits=3.\nYou may want to adjust the hashsize or require some manhattan distance (hash1 - hash2 < threshold).\n\nExample 2: Art dataset\n----------------------\n\nSource: 109259 art pieces from http://parismuseescollections.paris.fr/en/recherche/image-libre/.\n\nThe following pages show groups of images with the same hash (the hashing method sees them as the same).\n\n* `phash <https://johannesbuchner.github.io/imagehash/art3.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/art9.html>`__)\n* `dhash <https://johannesbuchner.github.io/imagehash/art4.html>`__ (or `with z-transform <https://johannesbuchner.github.io/imagehash/art10.html>`__)\n* `colorhash <https://johannesbuchner.github.io/imagehash/art7.html>`__\n* `average_hash <https://johannesbuchner.github.io/imagehash/art2.html>`__ (`with z-transform <https://johannesbuchner.github.io/imagehash/art8.html>`__)\n\nFor understanding hash distances, check out these excellent blog posts:\n* https://tech.okcupid.com/evaluating-perceptual-image-hashes-at-okcupid-e98a3e74aa3a\n* https://content-blockchain.org/research/testing-different-image-hash-functions/\n\nStoring hashes\n==============\n\nAs illustrated above, hashes can be turned into strings.\nThe strings can be turned back into a ImageHash object as follows.\n\nFor single perceptual hashes::\n\n\t>>> original_hash = imagehash.phash(Image.open('tests/data/imagehash.png'))\n\t>>> hash_as_str = str(original_hash)\n\t>>> print(hash_as_str)\n\tffd7918181c9ffff\n\t>>> restored_hash = imagehash.hex_to_hash(hash_as_str)\n\t>>> print(restored_hash)\n\tffd7918181c9ffff\n\t>>> assert restored_hash == original_hash\n\t>>> assert str(restored_hash) == hash_as_str\n\nFor crop_resistant_hash::\n\n\t>>> original_hash = imagehash.crop_resistant_hash(Image.open('tests/data/imagehash.png'), min_segment_size=500, segmentation_image_size=1000)\n\t>>> hash_as_str = str(original_hash)\n\t>>> restored_hash = imagehash.hex_to_multihash(hash_as_str)\n\t>>> assert restored_hash == original_hash\n\t>>> assert str(restored_hash) == hash_as_str\n\nFor colorhash::\n\n\t>>> original_hash = imagehash.colorhash(Image.open('tests/data/imagehash.png'), binbits=3)\n\t>>> hash_as_str = str(original_hash)\n\t>>> restored_hash = imagehash.hex_to_flathash(hash_as_str, hashsize=3)\n\nFor storing the hashes in a database and using fast hamming distance\nsearches, see pointers at https://github.com/JohannesBuchner/imagehash/issues/127\n(a blog post on how to do this would be a great contribution!)\n\n\n\nChangelog\n----------\n\n* 4.3: typing annotations by @Avasam @SpangleLabs and @nh2\n\n* 4.2: Cropping-Resistant image hashing added by @joshcoales\n\n* 4.1: Add examples and colorhash\n\n* 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.\n\n* 3.5: Image data handling speed-up\n\n* 3.2: whash now also handles smaller-than-hash images\n\n* 3.0: dhash had a bug: It computed pixel differences vertically, not horizontally.\n       I modified it to follow `dHashref`_. The old function is available as dhash_vertical.\n\n* 2.0: Added whash\n\n* 1.0: Initial ahash, dhash, phash implementations.\n\nContributing\n=============\n\nPull requests and new features are warmly welcome.\n\nIf you encounter a bug or have a question, please open a GitHub issue. You can also try Stack Overflow.\n\nOther projects\n==============\n\n* http://blockhash.io/\n* https://github.com/acoomans/instagram-filters\n* https://pippy360.github.io/transformationInvariantImageSearch/\n* https://www.phash.org/\n* https://pypi.org/project/dhash/\n* https://github.com/thorn-oss/perception (based on imagehash code, depends on opencv)\n* https://docs.opencv.org/3.4/d4/d93/group__img__hash.html\n\n.. |CI| image:: https://github.com/JohannesBuchner/imagehash/actions/workflows/testing.yml/badge.svg\n.. _CI: https://github.com/JohannesBuchner/imagehash/actions/workflows/testing.yml\n\n.. |Coveralls| image:: https://coveralls.io/repos/github/JohannesBuchner/imagehash/badge.svg\n.. _Coveralls: https://coveralls.io/github/JohannesBuchner/imagehash\n\n\n",
    "bugtrack_url": null,
    "license": "2-clause BSD License",
    "summary": "Image Hashing library",
    "version": "4.3.1",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "57914286e1e789921d809f58770369f7",
                "sha256": "5ad9a5cde14fe255745a8245677293ac0d67f09c330986a351f34b614ba62fb5"
            },
            "downloads": -1,
            "filename": "ImageHash-4.3.1-py2.py3-none-any.whl",
            "has_sig": true,
            "md5_digest": "57914286e1e789921d809f58770369f7",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 296543,
            "upload_time": "2022-09-28T08:44:37",
            "upload_time_iso_8601": "2022-09-28T08:44:37.573843Z",
            "url": "https://files.pythonhosted.org/packages/2d/b4/19a746a986c6e38595fa5947c028b1b8e287773dcad766e648897ad2a4cf/ImageHash-4.3.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6c1788e8e8c48a3c0fa26566cef1a93b",
                "sha256": "7038d1b7f9e0585beb3dd8c0a956f02b95a346c0b5f24a9e8cc03ebadaf0aa70"
            },
            "downloads": -1,
            "filename": "ImageHash-4.3.1.tar.gz",
            "has_sig": true,
            "md5_digest": "6c1788e8e8c48a3c0fa26566cef1a93b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 296989,
            "upload_time": "2022-09-28T08:44:39",
            "upload_time_iso_8601": "2022-09-28T08:44:39.943798Z",
            "url": "https://files.pythonhosted.org/packages/6c/f4/9821fe373a4788bca43f00491b008f930de0b12a60ff631852d1f984b966/ImageHash-4.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-09-28 08:44:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "JohannesBuchner",
    "github_project": "imagehash",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "imagehash"
}
        
Elapsed time: 0.02412s