フィルターのクリア

how to read series of images from folder in specific order?

5 ビュー (過去 30 日間)
sana3 sal
sana3 sal 2018 年 7 月 17 日
回答済み: Diwakar Ravichandran 2018 年 7 月 18 日
Hello there, I am trying to read jpg files from folder with a series of A1,A2,....A22 but when i read them with the following code they read A1,A10,A11,A12...etc then A2,A20,A21 .. etc alphabetically! how i can read them in my specific order?
myFolder = 'C:\Users\JUST\Downloads\Sana3';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isdir(myFolder)
errorMessage = sprintf('Error: The following folder does not exist:\n%s', myFolder);
uiwait(warndlg(errorMessage));
return;
end
% Get a list of all files in the folder with the desired file name pattern.
filePattern = fullfile(myFolder, '*.jpg'); % Change to whatever pattern you need.
theFiles = dir(filePattern);
for k = 1 : length(theFiles)
baseFileName = theFiles(k).name;
fullFileName = fullfile(myFolder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
% Now do whatever you want with this file name,
% such as reading it in as an image array with imread()
imageArray = imread(fullFileName);
%imshow(imageArray); % Display image.
f=(imageArray);
end
  2 件のコメント
dpb
dpb 2018 年 7 月 17 日
I'm virtually positive there's a sort routine on FEX for you...I forget whose submittal it was; I think maybe John D'Errico but won't swear it.
It illustrates why when you create such sequential names, alway use a naming pattern that will sort numerically as well as lexically -- like
>> num2str([1:3:22].','File%03d.jpg')
ans =
8×11 char array
'File001.jpg'
'File004.jpg'
'File007.jpg'
'File010.jpg'
'File013.jpg'
'File016.jpg'
'File019.jpg'
'File022.jpg'
>>
for example, and you wouldn't be having the problem.
sana3 sal
sana3 sal 2018 年 7 月 17 日
Thank youuuu, it's worked with me :D

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

回答 (1 件)

Diwakar Ravichandran
Diwakar Ravichandran 2018 年 7 月 18 日
As the solution is already given by @dpb please close this question so that it is off the unanswered questions list. Thank you
Cheers!

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by