MATLAB: How to change the name of the images from frame1.jpg , frame2. jpg to image1.jpg etc etc

for loopimageimage analysisimage processing

Hi,
I would like to change the name of 100 images from frame…jpg to image 1.jpg , image2.jpg etc etc.
can you guys help?
Regards,
M Choudhry.

Best Answer

Something like this
files = dir('*.jpg');
for i = 1:numel(files)
old_name = files(i).name;
new_name = strrep(old_name, 'frame', 'image');
movefile(old_name, new_name)
end