Effacer les filtres
Effacer les filtres

how to name the retrived images as the folder names

2 vues (au cours des 30 derniers jours)
new_user
new_user le 1 Jan 2022
Modifié(e) : new_user le 1 Jan 2022
image = imread('001.jpg');
[Label] = classify(net, image);
%Equation 2
query = feature; % transposing
transpose = transpose(1-query);
%Equation 3
Array = zeros(NumClasses,NumTrain);
distance = sqrt(sum((feature' - train_feature') .^ 2)); % other method eucledian: giving all images from same category maybe something is wrong
for e = 1 : NumTrain
f = transpose.*distance(:,e);
Array(:, e) = f;
end
Array = sqrt(sum(Array))';
% Fetch top images
sorting = sort(Array);
[~, n] = sort(Array);
numRetrival = 5;
n = n(1:numRetrival);
files = cell(1, numRetrival);
for h =1:numRetrival
files{h} = Train.Files{n(h)};
end
%query image
figure;
imshow(Read_file);
label = Predicted_Label_query
title( "query: " + string(label));
% retrived images
figure;
imshow(files);
title( "retrieved: " + string(label));
I can display the label of query image but how to display all the labels of retrived images?

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 1 Jan 2022
Modifié(e) : Sulaymon Eshkabilov le 1 Jan 2022
If understood your query correctly, you want to display the label variable in the title of a plotted data:
title(["retrieved: + " label{:}]);
%% OR just to display label 1 :
title(["retrieved: + " label{1}]);
  1 commentaire
new_user
new_user le 1 Jan 2022
Modifié(e) : new_user le 1 Jan 2022
no, I classified the query image and displayed it but I don't know how to classify the retrieved images and show the retrievd image labels.
as for 1 query image there can be multiple similar retrieved images and I waant to know and display each of their labels. Like the image attached. I have the label for wuery image but for retrieved image I want to have label for each image to be displayed (So, I first need to know the labels of the retrieved images and then display the labels). I used a for loop to decide how many labels I want to retrieve:
Fetch top images
sorting = sort(Array);
[~, n] = sort(Array);
numRetrival = 5;
n = n(1:numRetrival);
files = cell(1, numRetrival);
for h =1:numRetrival
files{h} = Train.Files{n(h)};
end

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Data Workflows dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by