我正在对图像文件集进行一些批处理,要求文件应该在文件名末尾附加一个“_corrected”字符串保存,例如'IMG_001.tif'应该在处理后保存。 'IMG_001_corrected.jpg'。
这是我的代码:
FileList = dir('srgb8bit/*.tif');
N = size(FileList,1);
for k = 1:N
% get the file name:
filename = FileList(k).name;
I = imread(filename);
Icorr = CorrectedRetinexFM(I,8);
** Here should go the save command**
最好能够选择不同的目录来保存它们。怎么可能?
非常感谢你的帮助!