naming file with count

6 次查看(过去 30 天)
Guan-Lin Chen
Guan-Lin Chen 2020-10-2
编辑: Adam Danz 2020-10-6
FileName = fullfile('C:\Users\User\Desktop\1cm circle cropped 0.27',sprintf('circle_cropped_%d.jpg',count));
The code I use would give file name (circle_cropped_1.jpg, circle_cropped_2.jpg, circle_cropped_3.jpg.........)
How to name the images with "circle_cropped_001.jpg, circle_cropped_002.jpg, circle_cropped_003.jpg.........................."
And how to move the counting number? to be "001_circle_cropped.jpg, 002_circle_cropped.jpg, 003_circle_cropped.jpg......................."

回答(1 个)

Adam Danz
Adam Danz 2020-10-2
编辑:Adam Danz 2020-10-6
sprintf('circle_cropped_%03d.jpg',count)
% ^^

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by