Go to file
Petrichor 464cef2de9
fix: typo in README.md (#58)
Declare two undeclared variables
2022-10-09 20:42:03 +09:00
_examples dct: Improve DCT1D to O(nlogn) algorithm (#29) 2019-03-19 13:52:44 +09:00
.github github: Update CIs (#55) 2022-05-26 22:58:40 +09:00
etcs Refactored Perceptionhash for performance (#54) 2022-05-26 15:56:47 +09:00
transforms Performance improvement (#56) 2022-09-08 15:20:33 +09:00
.gitignore Initial commit 2017-07-29 02:15:59 +09:00
AUTHORS.md Refactored Perceptionhash for performance (#54) 2022-05-26 15:56:47 +09:00
CODEOWNERS [goimagehash] First implement. 2017-07-31 22:47:14 +09:00
doc.go [goimagehash] First implement. 2017-07-31 22:47:14 +09:00
go.mod Update dependencies from go module and dep tool. (#36) 2019-12-07 23:29:03 +09:00
go.sum Update dependencies from go module and dep tool. (#36) 2019-12-07 23:29:03 +09:00
Gopkg.lock Update dependencies from go module and dep tool. (#36) 2019-12-07 23:29:03 +09:00
Gopkg.toml Update dependencies from go module and dep tool. (#36) 2019-12-07 23:29:03 +09:00
hashcompute_test.go all: Add more test (#30) 2019-03-19 23:10:52 +09:00
hashcompute.go Performance improvement (#56) 2022-09-08 15:20:33 +09:00
imagehash18.go Use bits.OnesCount64 when available 2018-05-02 23:52:38 +09:00
imagehash19.go Use bits.OnesCount64 when available 2018-05-02 23:52:38 +09:00
imagehash_test.go hashcompute: Update Extend API (#28) 2019-03-18 23:53:09 +09:00
imagehash.go Fix typo on the GoDoc for LoadImageHash. (#35) 2019-11-26 14:07:35 +09:00
LICENSE Initial commit 2017-07-29 02:15:59 +09:00
README.md fix: typo in README.md (#58) 2022-10-09 20:42:03 +09:00

GitHub Action GoDoc Go Report Card

goimagehash

Inspired by imagehash

A image hashing library written in Go. ImageHash supports:

Installation

go get github.com/corona10/goimagehash

Special thanks to

Usage

func main() {
        file1, _ := os.Open("sample1.jpg")
        file2, _ := os.Open("sample2.jpg")
        defer file1.Close()
        defer file2.Close()

        img1, _ := jpeg.Decode(file1)
        img2, _ := jpeg.Decode(file2)
        hash1, _ := goimagehash.AverageHash(img1)
        hash2, _ := goimagehash.AverageHash(img2)
        distance, _ := hash1.Distance(hash2)
        fmt.Printf("Distance between images: %v\n", distance)

        hash1, _ = goimagehash.DifferenceHash(img1)
        hash2, _ = goimagehash.DifferenceHash(img2)
        distance, _ = hash1.Distance(hash2)
        fmt.Printf("Distance between images: %v\n", distance)
        width, height := 8, 8
        hash3, _ := goimagehash.ExtAverageHash(img1, width, height)
        hash4, _ := goimagehash.ExtAverageHash(img2, width, height)
        distance, _ = hash3.Distance(hash4)
        fmt.Printf("Distance between images: %v\n", distance)
        fmt.Printf("hash3 bit size: %v\n", hash3.Bits())
        fmt.Printf("hash4 bit size: %v\n", hash4.Bits())

        var b bytes.Buffer
        foo := bufio.NewWriter(&b)
        _ = hash4.Dump(foo)
        foo.Flush()
        bar := bufio.NewReader(&b)
        hash5, _ := goimagehash.LoadExtImageHash(bar)
}

Release Note

v1.1.0

  • The performance of Perceptionhash is enhanced.

v1.0.3

  • Add workflow for GithubAction
  • Fix typo on the GoDoc for LoadImageHash

v1.0.2

  • go.mod is now used for install goimagehash

v1.0.1

  • Perception/ExtPerception hash creation times are reduced

v1.0.0

IMPORTANT goimagehash v1.0.0 does not have compatible with the before version for future features

v0.3.0

  • Support DifferenceHashExtend.
  • Support AverageHashExtend.
  • Support PerceptionHashExtend by @TokyoWolFrog.

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