imagehash

package module
v0.0.0-...-7061aa3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 24, 2018 License: MIT Imports: 4 Imported by: 1

README

imagehash

Build Status GoDoc Coverage

Golang implementation of image hashing algorithms.

Install:

go get -u github.com/devedge/imagehash

Usage

There are currently two image hashing algorithms implemented:

  • dhash - difference/gradient hash
  • ahash - average hash

To hash an image, it must be opened using OpenImg, a wrapper around imaging's image decoding function.

src,err := imagehash.OpenImg("./testdata/lena_512.png")

dhash

This is an implementation of the dhash algorithm found here (archived link), and also implemented in Python here.

It generates a unique signature for an image based on the gradient difference between pixels.

// The hashes are returned as byte arrays
//
// Calculate both horizontal & vertical gradients, then return them
// concatenated together as <horizontal><vertical>
hash,err  := imagehash.Dhash(src, hashLen)

// Calculate only the horizontal gradient difference
hashH,err := imagehash.DhashHorizontal(src, hashLen)

// Calculate only the vertical gradient difference
hashV,err := imagehash.DhashVertical(src, hashLen)
Using dhash:
package main

import (
  "fmt"
  "encoding/hex"  // To transform the byte array to hex
  "github.com/devedge/imagehash"
)

func main() {
  src,_ := imagehash.OpenImg("./testdata/lena_512.png")

  // The length of a downscaled side. It must be > 8, and
  // (hashLen * hashLen) must be a multiple of 8
  hashLen := 8
  // A value of 8 will return 64 bits, or 8 bytes / 16 hex characters
  // (64 bits = 8 bits length * 8 bits width)

  hash,_ := imagehash.Dhash(src, hashLen)
  hashH,_ := imagehash.DhashHorizontal(src, hashLen)
  hashV,_ := imagehash.DhashVertical(src, hashLen)

  fmt.Println("dhash:           ", hex.EncodeToString(hash))
  fmt.Println("Horizontal dhash:", hex.EncodeToString(hashH))
  fmt.Println("Vertical dhash:  ", hex.EncodeToString(hashV))
}
Implementation:

First, the image is grayscaled:

grayscale

To calculate the horizontal gradient difference, the image is resized down, using the hashLen variable.

In this example, hashLen = 8, so the image is scaled down to 9x8px. Then, if pixel[x] < pixel[x+1], a 1 is appended to a byte array; otherwise, a 0. This results in 8 bits of data per row, for 8 columns, or 64 bits total:

dhashprocess

This array of 1s and 0s is then flattened, and returned as a byte array:
0111011001110000011110010101101100110011000100110101101000111000

Which can also be represented in hex as 7670795b33135a38 using hex.EncodeToString(result)

Conversely, to obtain a vertical diff, the image would be scaled down to 8x9px, and the diff matrix would be the result of pixel[y] < pixel[y+1].

ahash

This algorithm returns a hash based on the average pixel value.

As with dhash, it also grayscales and resizes the image down, using the 'hashLen' value. Then, it finds the average value of the resultant pixels. Finally, it iterates over the pixels, and if one is greater than the average, a 1 is appended to the returned result; a 0 otherwise.

// The hash is returned as a byte array
hash,err := imagehash.Ahash(src, hashLen)

Examples

The Hamming distance between two byte arrays can be determined using a package like hamming:

package main

import (
  "fmt"
  "encoding/hex"
  "github.com/devedge/imagehash"
  "github.com/steakknife/hamming"
)

func main() {
  src512,_ := imagehash.OpenImg("./testdata/lena_512.png")
  src256,_ := imagehash.OpenImg("./testdata/lena_256.png")
  srcInv,_ := imagehash.OpenImg("./testdata/lena_inverted_512.png")

  hash512,_ := imagehash.Dhash(src512, 8)
  hash256,_ := imagehash.Dhash(src256, 8)
  hashInv,_ := imagehash.Dhash(srcInv, 8)

  // Hamming distance of 0, since the images are simply different sizes
  fmt.Println("'lena_512.png' dhash:", hex.EncodeToString(hash512))
  fmt.Println("'lena_256.png' dhash:", hex.EncodeToString(hash256))
  fmt.Println("The Hamming distance between these:", hamming.Bytes(hash512, hash256))
  fmt.Println()

  // Completely different dhash, since an inverted image has a completely
  // different gradient colorscheme
  fmt.Println("'lena_512.png' dhash:         ", hex.EncodeToString(hash512))
  fmt.Println("'lena_inverted_512.png' dhash:", hex.EncodeToString(hashInv))
  fmt.Println("The Hamming distance between these:", hamming.Bytes(hash512, hashInv))
}

Dependencies:

  • imaging - Simple Go image processing package

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Ahash

func Ahash(img image.Image, hashLen int) ([]byte, error)

Ahash calculates the average hash of an image. The image is first grayscaled, then scaled down to "hashLen" for the width and height. Then, the average value of the pixels is computed, and if a pixel is above the average, a 1 is appended to the byte array; a 0 otherwise.

func Dhash

func Dhash(img image.Image, hashLen int) ([]byte, error)

Dhash calculates the horizontal and vertical gradient hashes separately, then concatenates then to return one result as: <horizontal><vertical>. 'img' is an Image object returned by opening an image file using OpenImg(). 'hashLen' is the size that the image will be shrunk to. It must be a non-zero multiple of 8.

func DhashHorizontal

func DhashHorizontal(img image.Image, hashLen int) ([]byte, error)

DhashHorizontal returns the result of a horizontal gradient hash. 'img' is an Image object returned by opening an image file using OpenImg(). 'hashLen' is the size that the image will be shrunk to. It must be a non-zero multiple of 8.

func DhashVertical

func DhashVertical(img image.Image, hashLen int) ([]byte, error)

DhashVertical returns the result of a vertical gradient hash. 'img' is an Image object returned by opening an image file using OpenImg(). 'hashLen' is the size that the image will be shrunk to. It must be a non-zero multiple of 8.

func GetDistance

func GetDistance(hash1, hash2 []byte) int

GetDistance returns the hamming distance between two hashs

func GetDistanceMaxRange

func GetDistanceMaxRange(hash1, hash2 []byte) int

GetDistanceMaxRange returns the distance between two hashs

func OpenImg

func OpenImg(fp string) (image.Image, error)

OpenImg is a wrapper aroung the Open function from 'imaging'. Open opens & encodes an image from the filesystem, which dhash is based upon.

Types

type BitArray

type BitArray struct {
	// contains filtered or unexported fields
}

BitArray is an internal struct used by dhash to simplify appending bits to a byte array from left to right.

func NewBitArray

func NewBitArray(numBits int) (*BitArray, error)

NewBitArray is a constructor function for the BitArray struct. The input, 'numBits' is the number of bits this byte array will hold, so it must be a non-zero multiple of 8.

func (*BitArray) AppendBit

func (ab *BitArray) AppendBit(bit int) error

AppendBit appends a 1 or a 0 to the byte array in the BitArray struct. Valid input is an int of '1' or '0', and this function cannot be called after the byte array has filled up.

func (BitArray) GetArray

func (ab BitArray) GetArray() []byte

GetArray returns the byte array in its current state. It can be called at any time.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL