Filter löschen
Filter löschen

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 Ansicht (letzte 30 Tage)
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 Kommentar
Walter Roberson
Walter Roberson am 29 Dez. 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

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by