naming file with count

조회 수: 1 (최근 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에서 Import, Export, and Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by