图片批量重命名
来源:(29条消息) Matlab:如何批量修改图片名称(图像处理)_川大彭于晏的博客-CSDN博客_matlab修改图片名称https://blog.csdn.net/qq_40797015/article/details/109785981
%% 批量修改图片名称
close all;
clear all;
clc
path_origin='D:\360 Download\1-1\'; % 原路径
path_new='D:\360 Download\1-2\'; % 新路径,需提前创建
img_path_list=dir(strcat(path_origin,'*.tif')); %提取.tif图片
img_num=length(img_path_list); % 统计综述for j=1:img_numimg_name_old=img_path_list(j).name; % 原图片名 img_name_new=strcat('img_',num2str(j),'.tif'); % 新图片名image=imread(strcat(path_origin,img_name_old)); % 读取imwrite(image,strcat(path_new,img_name_new)); % 重命名
end