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 次查看(过去 30 天)
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 个评论
Walter Roberson
Walter Roberson 2018-12-29
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

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by