2020-04-10 12:32:45 -04:00
2019-12-26 16:58:32 -05:00
2019-12-25 09:13:14 -05:00
2019-12-26 16:43:03 -05:00
2019-12-25 09:17:41 -05:00
2019-12-25 08:55:07 -05:00
2019-12-25 08:55:07 -05:00
2019-12-28 10:14:38 -05:00
2020-04-10 12:32:45 -04:00
2020-04-10 12:02:25 -04:00
2019-12-28 10:14:38 -05:00
2019-12-28 10:14:38 -05:00
2019-12-25 09:14:05 -05:00
2019-12-27 13:45:23 -05:00

libfastimagehash

CodeFactor GitHub license

WIP: Not ready for production use!

libfastimagehash is a imagehash replacement for C/C++.

See also:

Example usage

#include <fastimagehash.h>

int main() {
    unsigned char result[HASH_SIZE];

    phash_file("image.jpeg", result, HASH_SIZE, HIGHFREQ_FACTOR);
}

For slight additional performance gains, libfastimagehash can compute all hashes at once instead of decoding the same image at each step.

*See all benchmarks

Build from source

# Download dependencies
apt install libopencv-dev libfftw3-dev cmake

# Checkout source
git clone --recursive https://github.com/simon987/fastimagehash

# Build
cmake .
make

# Install as a system library
sudo make install

Built with

Disclaimer: The methods used to compute the image hashes are identical to the imagehash python library, however, due to some slight differences in the way OpenCV vs Pillow images are resized, the final image hashes are not always exactly the same.

Languages
C++ 61.7%
C 18.3%
CMake 10.2%
Python 9.8%