Effacer les filtres
Effacer les filtres

naming file with count

6 vues (au cours des 30 derniers jours)
Guan-Lin Chen
Guan-Lin Chen le 2 Oct 2020
Modifié(e) : Adam Danz le 6 Oct 2020
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......................."

Réponses (1)

Adam Danz
Adam Danz le 2 Oct 2020
Modifié(e) : Adam Danz le 6 Oct 2020
sprintf('circle_cropped_%03d.jpg',count)
% ^^

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by