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)
Requirements
Based on PIL/Pillow Image, numpy and scipy.fftpack (for pHash) Easy installation through pypi.
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ImageHash-2.1.tar.gz
(4.8 kB
view details)
File details
Details for the file ImageHash-2.1.tar.gz
.
File metadata
- Download URL: ImageHash-2.1.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7e52d443ac29dc6475417207617dfa8e9f76dfe3451c1fb1927d53d1dd55a16b
|
|
MD5 |
ae9066d35c166a1a234b5608ed114827
|
|
BLAKE2b-256 |
5547f841e9b6b79b875a11ef5fe3684ab1c761a75d31939866906bf60f71d5d9
|