0.0.13 • Published 1 year ago

img-hasher v0.0.13

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Image Hasher

A fast image hash generator and hamming distance calculator using multiple algorithms

Installation

npm install img-hasher

Usage

Get Hash Of an Image

const { getHash } = require('img-hasher');
const hash = await getHash('https://example.com/image.jpg');

Get Hash Distance Between Two Images

const { hammingDistance } = require('img-hasher');
const distance = await hammingDistance('https://example.com/image1.jpg', 'https://example.com/image2.jpg');

Get Hash Distance Between Two Hashes

const { getHash, hammingDistanceFromHash } = require('img-hasher');
const hash1 = await getHash('https://example.com/image1.jpg');
const hash2 = await getHash('https://example.com/image2.jpg');
const distance = hammingDistanceFromHash(hash1, hash2);

Algorithms

  • Mean
  • Gradient
  • VertGradient
  • DoubleGradient
  • BlockHash
0.0.12

1 year ago

0.0.13

1 year ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.0

2 years ago