From e588da1f678cc505abb41aa05b4077afd64f4a4b Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Wed, 9 May 2018 09:37:49 +0900 Subject: [PATCH] goimagehash: Update README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 90b1afb..b42756f 100644 --- a/README.md +++ b/README.md @@ -43,3 +43,16 @@ func main() { fmt.Printf("Distance between images: %v\n", distance) } ``` + +## Release Note + +### v0.2.0 +- Perception Hash is updated. +- Fix a critical bug of finding median value. + +### v0.1.0 +- Support Average hashing +- Support Difference hashing +- Support Perception hashing +- Use bits.OnesCount64 for computing Hamming distance by @dominikh +- Support hex serialization methods to ImageHash by @brunoro