You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A GUI app made in PyQt5 ,to search similar image related to a particular image
We have made a app to find similar image to a given image among the list of images
libraries:
Tensorflow 2.x
Scikit learn
numpy
Matplotlib
PyQt5
Algorithm
We have taked 2 pretrained models 1.Inceptionnet_v3 2.VGG .with their classification layer removed
In first case we pass both the search image and target images through the model and find the cosine similarity matric between the output
In VGG we introduced customization through outputing middle layers along with final layer to extract style.so we can filter the search result with style similarity and content similarity .The example depicted below is using style extraction using this model
This is the target image:
How to use
In this App you can select directory where all the input data images are present
Afterwards select query image or target image by clicking 'select query image' button
Select option among filter by style or filter by style and content both, filter by style and content is more accurate as well as somewhat time consuming
Click on start button
After few seconds output window will show the output
This will have matching images to the query image in the decreasing order of matching
And we get the result as this search result:
About
A GUI app made in tkinter ,to search similar image related to a particular image