OUtput names same as input names?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
reyadh Albarakat
el 7 de Feb. de 2018
Comentada: Jan
el 7 de Feb. de 2018
Hi Everybody,
I have 150 images as you know each image has name. the output will be 150 image. how to use for loop to save output image with same name of inputs.
Thanks for your help
Reyadh
Respuesta aceptada
Jan
el 7 de Feb. de 2018
As soon as you are able to get the list of input names, it is trivial to use them as output names also. So maybe your question is, how you get the names of the input files? Then see FAQ: Process a sequence of files.
InFolder = 'D:\Your\Folder\';
OutFolder = 'D:\Your\Folder\';
DirList = dir(fullfile(InFolder, '*.jpg'));
for iFile = 1:numel(DirList)
InFile = fullfile(InFolder, DirList(iFile).name);
% Maybe you want to create the output in another folder?
OutFile = fullfile(OuFolder, DirList(iFile).name);
...
end
2 comentarios
Jan
el 7 de Feb. de 2018
Exactly what my code does. So what is the actual problem?
Do you want to overwrite the input file or use the same name in a different folder?
Más respuestas (0)
Ver también
Categorías
Más información sobre Convert Image Type 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!