2017-07-28 10:18:24 -07:00
|
|
|
// Copyright 2017 The goimagehash Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package goimagehash
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"image"
|
2024-04-05 16:29:03 -07:00
|
|
|
"image/draw"
|
2017-07-28 10:18:24 -07:00
|
|
|
|
2024-05-01 18:06:48 -07:00
|
|
|
"gitea.narnian.us/lordwelch/goimagehash/etcs"
|
|
|
|
"gitea.narnian.us/lordwelch/goimagehash/transforms"
|
2024-04-05 16:29:03 -07:00
|
|
|
"github.com/anthonynsimon/bild/transform"
|
2017-07-28 10:18:24 -07:00
|
|
|
)
|
|
|
|
|
2024-04-05 16:29:03 -07:00
|
|
|
func ToGray(img image.Image) *image.Gray {
|
|
|
|
gray := image.NewGray(image.Rect(0, 0, img.Bounds().Dx(), img.Bounds().Dy()))
|
|
|
|
gray.Pix = transforms.Rgb2Gray(img)
|
|
|
|
return gray
|
|
|
|
}
|
|
|
|
|
|
|
|
func resize(img image.Image, w, h int) *image.Gray {
|
|
|
|
resized := transform.Resize(img, w, h, transform.Lanczos)
|
|
|
|
r_gray := image.NewGray(image.Rect(0, 0, resized.Bounds().Dx(), resized.Bounds().Dy()))
|
|
|
|
draw.Draw(r_gray, resized.Bounds(), resized, resized.Bounds().Min, draw.Src)
|
|
|
|
return r_gray
|
|
|
|
}
|
|
|
|
|
2023-05-03 07:52:14 -07:00
|
|
|
// AverageHash function returns a hash computation of average hash.
|
2017-07-28 10:18:24 -07:00
|
|
|
// Implementation follows
|
|
|
|
// http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html
|
|
|
|
func AverageHash(img image.Image) (*ImageHash, error) {
|
|
|
|
if img == nil {
|
2022-09-07 23:20:33 -07:00
|
|
|
return nil, errors.New("image object can not be nil")
|
2017-07-28 10:18:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ahash := NewImageHash(0, AHash)
|
|
|
|
|
2024-04-05 16:29:03 -07:00
|
|
|
gray := resize(ToGray(img), 8, 8)
|
|
|
|
avg := etcs.MeanOfPixels(gray.Pix)
|
|
|
|
|
|
|
|
for idx, p := range gray.Pix {
|
2017-07-28 10:18:24 -07:00
|
|
|
if p > avg {
|
2024-04-05 16:29:03 -07:00
|
|
|
ahash.leftShiftSet(len(gray.Pix) - idx - 1)
|
2017-07-28 10:18:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ahash, nil
|
|
|
|
}
|
|
|
|
|
2017-07-31 07:24:04 -07:00
|
|
|
// DifferenceHash function returns a hash computation of difference hash.
|
2017-07-28 10:18:24 -07:00
|
|
|
// Implementation follows
|
|
|
|
// http://www.hackerfactor.com/blog/?/archives/529-Kind-of-Like-That.html
|
|
|
|
func DifferenceHash(img image.Image) (*ImageHash, error) {
|
|
|
|
if img == nil {
|
2022-09-07 23:20:33 -07:00
|
|
|
return nil, errors.New("image object can not be nil")
|
2017-07-28 10:18:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
dhash := NewImageHash(0, DHash)
|
2024-04-05 16:29:03 -07:00
|
|
|
|
|
|
|
gray := resize(ToGray(img), 9, 8)
|
|
|
|
|
2017-07-28 10:18:24 -07:00
|
|
|
idx := 0
|
2024-04-05 16:29:03 -07:00
|
|
|
for y := 0; y < gray.Bounds().Dy(); y++ {
|
|
|
|
for x := 0; x < gray.Bounds().Dx()-1; x++ {
|
|
|
|
if gray.Pix[gray.PixOffset(x, y)] < gray.Pix[gray.PixOffset(x+1, y)] {
|
2019-03-16 01:22:57 -07:00
|
|
|
dhash.leftShiftSet(64 - idx - 1)
|
2017-07-28 10:18:24 -07:00
|
|
|
}
|
|
|
|
idx++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return dhash, nil
|
|
|
|
}
|
|
|
|
|
2017-07-31 07:24:04 -07:00
|
|
|
// PerceptionHash function returns a hash computation of phash.
|
2017-07-28 10:18:24 -07:00
|
|
|
// Implementation follows
|
|
|
|
// http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html
|
|
|
|
func PerceptionHash(img image.Image) (*ImageHash, error) {
|
|
|
|
if img == nil {
|
2022-09-07 23:20:33 -07:00
|
|
|
return nil, errors.New("image object can not be nil")
|
2017-07-28 10:18:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
phash := NewImageHash(0, PHash)
|
2024-04-05 16:29:03 -07:00
|
|
|
gray := resize(ToGray(img), 32, 32)
|
|
|
|
gray32 := make([]float64, len(gray.Pix))
|
|
|
|
for i, p := range gray.Pix {
|
|
|
|
gray32[i] = float64(p)
|
|
|
|
}
|
|
|
|
flattens := transforms.DCT2DFast32(&gray32)
|
2022-05-25 23:56:47 -07:00
|
|
|
|
2022-09-07 23:20:33 -07:00
|
|
|
median := etcs.MedianOfPixelsFast64(flattens[:])
|
2017-07-28 10:18:24 -07:00
|
|
|
|
|
|
|
for idx, p := range flattens {
|
|
|
|
if p > median {
|
2022-05-25 23:56:47 -07:00
|
|
|
phash.leftShiftSet(64 - idx - 1) // leftShiftSet
|
2017-07-28 10:18:24 -07:00
|
|
|
}
|
|
|
|
}
|
2022-05-25 23:56:47 -07:00
|
|
|
|
2017-07-28 10:18:24 -07:00
|
|
|
return phash, nil
|
|
|
|
}
|
2019-02-08 01:02:25 -08:00
|
|
|
|
2024-04-05 16:29:03 -07:00
|
|
|
// FlattenPixels function flattens 2d array into 1d array.
|
|
|
|
func FlattenPixels(pixels [][]float64, x int, y int) []float64 {
|
|
|
|
flattens := make([]float64, x*y)
|
|
|
|
for i := 0; i < y; i++ {
|
|
|
|
for j := 0; j < x; j++ {
|
|
|
|
flattens[y*i+j] = pixels[i][j]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return flattens
|
2022-05-25 23:56:47 -07:00
|
|
|
}
|
|
|
|
|
2019-03-18 07:53:09 -07:00
|
|
|
// ExtPerceptionHash function returns phash of which the size can be set larger than uint64
|
2019-02-08 01:02:25 -08:00
|
|
|
// Some variable name refer to https://github.com/JohannesBuchner/imagehash/blob/master/imagehash/__init__.py
|
2019-03-18 05:40:16 -07:00
|
|
|
// Support 64bits phash (width=8, height=8) and 256bits phash (width=16, height=16)
|
2024-04-05 16:29:03 -07:00
|
|
|
// Important: width * height should be a power of 2
|
|
|
|
func ExtPerceptionHash(img image.Image, hash_size, freq int) (*ExtImageHash, error) {
|
|
|
|
imgSize := hash_size * freq
|
2019-02-08 01:02:25 -08:00
|
|
|
if img == nil {
|
2022-09-07 23:20:33 -07:00
|
|
|
return nil, errors.New("image object can not be nil")
|
2019-02-08 01:02:25 -08:00
|
|
|
}
|
2019-03-18 21:52:44 -07:00
|
|
|
if imgSize <= 0 || imgSize&(imgSize-1) != 0 {
|
|
|
|
return nil, errors.New("width * height should be power of 2")
|
|
|
|
}
|
2019-03-16 07:15:32 -07:00
|
|
|
var phash []uint64
|
2024-04-05 16:29:03 -07:00
|
|
|
// gray := resize(ToGray(img), imgSize, imgSize)
|
|
|
|
// gray32 := make([][]float64, imgSize)
|
|
|
|
// for i := range gray32 {
|
|
|
|
// gray32[i] = make([]float64, imgSize)
|
|
|
|
// for x := range gray32[i] {
|
|
|
|
// gray32[i][x] = float64(gray.Pix[(gray.PixOffset(x, i))])
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// pixels := transforms.DCT2D(gray32, hash_size, hash_size)
|
|
|
|
// flattens := FlattenPixels(pixels, hash_size, hash_size)
|
|
|
|
// median := etcs.MedianOfPixels(flattens)
|
|
|
|
// print(hash_size, "x", freq, " pix:", len(gray.Pix), " h:", imgSize, " flatten:", len(flattens), "\n")
|
|
|
|
|
|
|
|
// lenOfUnit := 64
|
|
|
|
// if (hash_size*hash_size)%lenOfUnit == 0 {
|
|
|
|
// phash = make([]uint64, (hash_size*hash_size)/lenOfUnit)
|
|
|
|
// } else {
|
|
|
|
// phash = make([]uint64, (hash_size*hash_size)/lenOfUnit+1)
|
|
|
|
// }
|
|
|
|
// for idx, p := range flattens {
|
|
|
|
// indexOfArray := idx / lenOfUnit
|
|
|
|
// indexOfBit := lenOfUnit - idx%lenOfUnit - 1
|
|
|
|
// if p > median {
|
|
|
|
// phash[indexOfArray] |= 1 << uint(indexOfBit)
|
|
|
|
// }
|
|
|
|
// }
|
2019-03-16 23:42:07 -07:00
|
|
|
return NewExtImageHash(phash, PHash, imgSize), nil
|
2019-02-08 01:02:25 -08:00
|
|
|
}
|
2019-03-15 08:26:38 -07:00
|
|
|
|
2019-03-18 07:53:09 -07:00
|
|
|
// ExtAverageHash function returns ahash of which the size can be set larger than uint64
|
2019-03-18 05:40:16 -07:00
|
|
|
// Support 64bits ahash (width=8, height=8) and 256bits ahash (width=16, height=16)
|
2019-03-18 07:53:09 -07:00
|
|
|
func ExtAverageHash(img image.Image, width, height int) (*ExtImageHash, error) {
|
2019-03-15 08:26:38 -07:00
|
|
|
if img == nil {
|
2022-09-07 23:20:33 -07:00
|
|
|
return nil, errors.New("image object can not be nil")
|
2019-03-15 08:26:38 -07:00
|
|
|
}
|
2019-03-16 07:15:32 -07:00
|
|
|
var ahash []uint64
|
2019-03-18 05:40:16 -07:00
|
|
|
imgSize := width * height
|
2019-03-15 08:26:38 -07:00
|
|
|
|
2024-04-05 16:29:03 -07:00
|
|
|
gray := resize(ToGray(img), width, height)
|
|
|
|
avg := etcs.MeanOfPixels(gray.Pix)
|
2019-03-15 08:26:38 -07:00
|
|
|
|
|
|
|
lenOfUnit := 64
|
2019-03-16 07:15:32 -07:00
|
|
|
if imgSize%lenOfUnit == 0 {
|
|
|
|
ahash = make([]uint64, imgSize/lenOfUnit)
|
|
|
|
} else {
|
|
|
|
ahash = make([]uint64, imgSize/lenOfUnit+1)
|
|
|
|
}
|
2024-04-05 16:29:03 -07:00
|
|
|
for idx, p := range gray.Pix {
|
2019-03-16 01:22:57 -07:00
|
|
|
indexOfArray := idx / lenOfUnit
|
|
|
|
indexOfBit := lenOfUnit - idx%lenOfUnit - 1
|
2019-03-15 08:26:38 -07:00
|
|
|
if p > avg {
|
|
|
|
ahash[indexOfArray] |= 1 << uint(indexOfBit)
|
|
|
|
}
|
|
|
|
}
|
2019-03-16 23:42:07 -07:00
|
|
|
return NewExtImageHash(ahash, AHash, imgSize), nil
|
2019-03-15 08:26:38 -07:00
|
|
|
}
|
2019-03-15 08:47:57 -07:00
|
|
|
|
2019-03-18 07:53:09 -07:00
|
|
|
// ExtDifferenceHash function returns dhash of which the size can be set larger than uint64
|
2019-03-18 05:40:16 -07:00
|
|
|
// Support 64bits dhash (width=8, height=8) and 256bits dhash (width=16, height=16)
|
2019-03-18 07:53:09 -07:00
|
|
|
func ExtDifferenceHash(img image.Image, width, height int) (*ExtImageHash, error) {
|
2019-03-15 08:47:57 -07:00
|
|
|
if img == nil {
|
2022-09-07 23:20:33 -07:00
|
|
|
return nil, errors.New("image object can not be nil")
|
2019-03-15 08:47:57 -07:00
|
|
|
}
|
|
|
|
|
2019-03-16 07:15:32 -07:00
|
|
|
var dhash []uint64
|
2019-03-18 05:40:16 -07:00
|
|
|
imgSize := width * height
|
2019-03-15 08:47:57 -07:00
|
|
|
|
2024-04-05 16:29:03 -07:00
|
|
|
gray := resize(ToGray(img), width+1, height)
|
2019-03-15 08:47:57 -07:00
|
|
|
|
|
|
|
lenOfUnit := 64
|
2019-03-16 07:15:32 -07:00
|
|
|
if imgSize%lenOfUnit == 0 {
|
|
|
|
dhash = make([]uint64, imgSize/lenOfUnit)
|
|
|
|
} else {
|
|
|
|
dhash = make([]uint64, imgSize/lenOfUnit+1)
|
|
|
|
}
|
2019-03-15 08:47:57 -07:00
|
|
|
idx := 0
|
2024-04-05 16:29:03 -07:00
|
|
|
for y := 0; y < gray.Bounds().Dy(); y++ {
|
|
|
|
for x := 0; x < gray.Bounds().Dx()-1; x++ {
|
|
|
|
if gray.Pix[gray.PixOffset(x, y)] < gray.Pix[gray.PixOffset(x+1, y)] {
|
|
|
|
indexOfArray := idx / lenOfUnit
|
|
|
|
indexOfBit := lenOfUnit - idx%lenOfUnit - 1
|
2019-03-15 08:47:57 -07:00
|
|
|
dhash[indexOfArray] |= 1 << uint(indexOfBit)
|
|
|
|
}
|
|
|
|
idx++
|
|
|
|
}
|
|
|
|
}
|
2019-03-16 23:42:07 -07:00
|
|
|
return NewExtImageHash(dhash, DHash, imgSize), nil
|
2019-03-15 08:47:57 -07:00
|
|
|
}
|