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.0.tar.gz
(4.8 kB
view details)
File details
Details for the file ImageHash-2.0.tar.gz
.
File metadata
- Download URL: ImageHash-2.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2db9630fc2b1f7a8a15a9a755f56442189d8a07ae01d57798f7330acd3c3f0da
|
|
MD5 |
a39f6cfc06fdde78b413ba3e557252d8
|
|
BLAKE2b-256 |
89f622f776394cdd7dbb7985ab7a8c6e96516fceaca1746216524d677304bbf8
|