goimagehash: Fix typo.

This commit is contained in:
Dong-hee Na 2017-08-03 22:35:50 +09:00
parent 2b9c664be8
commit b969cb59dc
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ A image hashing library written in Go. ImageHash supports:
* [Average hashing](http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html) * [Average hashing](http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html)
* [Difference hashing](http://www.hackerfactor.com/blog/index.php?/archives/529-Kind-of-Like-That.html) * [Difference hashing](http://www.hackerfactor.com/blog/index.php?/archives/529-Kind-of-Like-That.html)
* [Perception hashing](http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html) * [Perception hashing](http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html)
* Wavlet hashing [TODO] * [Wavelet hashing](https://fullstackml.com/wavelet-image-hash-in-python-3504fdd282b5) [TODO]
**Only support 64bits hash.** **Only support 64bits hash.**

View File

@ -22,7 +22,7 @@ const (
AHash // Average Hash AHash // Average Hash
PHash // Perceptual Hash PHash // Perceptual Hash
DHash // Difference Hash DHash // Difference Hash
WHash // Wavlet Hash WHash // Wavelet Hash
) )
// NewImageHash function creates a new image hash. // NewImageHash function creates a new image hash.