Effacer les filtres
Effacer les filtres

How to back track the image from the specific path given by the code(missclassified image) and i hereby going to enhance that particular image only. i obtained the path name of the missclassified images. i can't back track for specific images?

1 vue (au cours des 30 derniers jours)
load correct_predictions
load file
[r c]=size(correct_predictions);
v=correct_predictions;
j=1;
OutputFolder = 'edit';
for i= 1:r
if v(i)==0;
pos(j)=i;
disp(file_list(i).name);
imwrite( file_list(i).name, OutputFolder);
j=j+1;
end
end
  1 commentaire
Walter Roberson
Walter Roberson le 29 Déc 2018
You should be using fullfile(OutputFolder, file_list(i).name)
But your imwrite() needs to be told what content to write.
By the way, you could probably save some effort using
pos = find(v);
for i = pos

Connectez-vous pour commenter.

Réponses (0)

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