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 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Walter Roberson
el 29 de Dic. de 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
Respuestas (0)
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!