-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How you get the this figure in Part3: image retrieval (return top 5 of each method)? #5
Comments
I want to know it too... |
Generally, when it comes to IR ranking with deep learning model, we use the outputs of the second last layer as input image's feature. Compare the feature of query image and the feature of each image in the database. |
@pochih thanks for your work so far - so you're saying that this codebase merely generates a DB of various features/descriptors/etc, and that is does not having anything todo with retrieving content (images) given a query image?
This is actually a really inefficient way of dealing with this problem. Can you explain exactly why you called this project "A content-based image retrieval (CBIR) system" ? because there is no retrieval going on here? or am I wrong? |
@dgtlmoon - Its been a year but if you are still interested in this, then this response might be useful. You can load the file containing the features extracted for each image. The file will be created in the cache directory of your root folder. Code mentioned below could be helpful: You might want to modify the function infer inside evaluate to return also the matched image name along with class and distance which it is presently retrieving. |
man i wish it was possible to ban/delete comments, like the one above |
@dgtlmoon You are right , the retrieval is not going on. What's the whole point of retrieving the image by passing the class_name !! |
Hi,
Can you tell us that how you get this images?
The text was updated successfully, but these errors were encountered: