How can read a particular file pattern and store it in the same pattern?

1 回表示 (過去 30 日間)
Zara Khan
Zara Khan 2019 年 5 月 14 日
コメント済み: darova 2019 年 5 月 17 日
My folder consists of 1000 images. File names are of pattern P1_G1_1,P1_G1_2,.................P1_G1_10
P1_G2_1.....................................P1_G2_10
.
.
.
P10_G10_1.....................................P10_G10_10
After the rotation I want to store them in a different folder using the same name pattern . How to do this ?

採用された回答

darova
darova 2019 年 5 月 14 日
I'd use loops (not tested)
path = 'd:\Studying\matlab\'; % read from
dest = 'd:\Studying\SolidWorks\'; % save to
for i = 1:10
for j = 1:10
for k = 1:10
f = sprintf('P%i_G%i_%i.png',i,j,k); % file name with ".png" extension
A = imread([path, f]); % read image
B = imrotate(A,10); % roate image by 10 degree
imwrite(B,[dest, f]); % save rotated image
end
end
end
  6 件のコメント
Zara Khan
Zara Khan 2019 年 5 月 17 日
darova, thank you . It has worked nicely . I was missing the folder name.
darova
darova 2019 年 5 月 17 日
You are welcome

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by