smaranjitghose / DeepPixel

An open-source Python package for making computer vision and image processing simpler
MIT License
22 stars 37 forks source link

Solve #21 (Image Similarity ) #34

Closed annu12340 closed 4 years ago

annu12340 commented 4 years ago

I have completed this task of taking 2 images and comparing the similarity between them

smaranjitghose commented 4 years ago

Nice work @annu12340 , For the next phase of the issue, I want you to modify the script or add another one so that if I have an image say img1 and there's another image say img2 which is actually a part of the first image img1 (consider I have a fingerprint as my first image and a part(say quadrant) of the fingerprint as the second image), our script should be able to identify this with a score and also draw a bounding box over the original image img1 that tells us which part was taken to form img2

annu12340 commented 4 years ago

:)

So, for the next phase of the issue, I got to check whether img2 is like a subset (or a part )of img1, right?