add readme

This commit is contained in:
simon987 2019-12-25 11:09:02 -05:00
parent 38200d08cd
commit cf309f71ae
10 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,41 @@
## libfastimagehash
[![CodeFactor](https://www.codefactor.io/repository/github/simon987/fastimagehash/badge/master)](https://www.codefactor.io/repository/github/simon987/fastimagehash/overview/master)
[![GitHub license](https://img.shields.io/github/license/simon987/fastimagehash)](https://github.com/simon987/fastimagehash/blob/master/LICENSE)
*WIP: Not ready for production use!*
`libfastimagehash` is a [imagehash](https://github.com/JohannesBuchner/imagehash/)
replacement for C/C++.
<p align="center">
<img src="bench/results/phash_large.png"/>
</p>
*[\*benchmarks](bench/)*
### Example usage
```C++
#include "fastimagehash.h"
int main() {
// TODO
}
```
### Build from source
// TODO
**Built with**
* [opencv](https://github.com/opencv) for image decoding & resizing
* [wavelib](https://github.com/rafat/wavelib) for wavelet decomposition in `whash` (With [additional CFLAGS](https://github.com/simon987/wavelib/commit/8d05b0b7321271b05365d3e89bfb0fd5a26d68a6))
* [fftw3](http://fftw.org/) for DCT in `phash`
* [google/benchmark](https://github.com/google/benchmark) to measure performance
**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.

31
bench/README.md Normal file
View File

@ -0,0 +1,31 @@
To run the benchmarks:
```bash
python run.py
```
All benchmarks were ran with
```
i7-7500U CPU @ 2.70GHz x 4
gcc version 9.2.0
Python 3.8.0
imagehash 4.0
fastimagehash v0.1
```
### Results
**phash**
![phash_s](results/phash_small.png)
![phash_l](results/phash_large.png)
**dhash**
![dhash_s](results/dhash_small.png)
![dhash_l](results/dhash_large.png)
**whash**
![whash_s](results/whash_small.png)
![whash_l](results/whash_large.png)
**ahash**
![ahash_s](results/ahash_small.png)
![ahash_l](results/ahash_large.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB