我正在对图像文件集进行一些批处理,这要求文件应在文件名末尾使用附加的“_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**
最好能够选择不同的目录来保存它们。这怎么可能?
非常感谢你的帮助!