Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.08 KB

File metadata and controls

40 lines (32 loc) · 1.08 KB

Image_match

Find the original image of the converted image & Similarty between many images

Requirements

library download

How to install the library

Please follow the order

use "pip install"
1. pip install elasticsearch
2. pip install scipy~.whl
3. pip install numpy+mkl~.whl
4. pip install image_match

Code (Similarity between 2 images)

from image_match.goldberg import ImageSignature

gis = ImageSignature()
a = gis.generate_signature(image_path_1)
b = gis.generate_signature(image_path_2)
print(gis.normalized_distance(a, b))

If you want to get similarity between many images, See github code

Reference