フィルターのクリア

how to get folder name

2 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2013 年 10 月 26 日
回答済み: Walter Roberson 2013 年 10 月 26 日
i have 4 folders named
1 - airplane
2 - baseball
3 - beach
4 - forest
now on calculation if i get value 2, i want to access all images in folder "2 - baseball"
i'm not getting the access correct... please do correct it for me...
BaseFileName = sprintf('%d*\\image_44', i);
FullFileName = fullfile('Training Dataset', BaseFileName);
imageFile = imread(FullFileName);
the error i get is
??? Error using ==> dicomread>newDicomread at 175
File "Training Dataset\6*\image_44" not found.
how to read that folder name.... please do reply.....

採用された回答

Walter Roberson
Walter Roberson 2013 年 10 月 26 日
folders = { '1 - airplane'
'2 - baseball'
'3 - beach'
'4 - forest' }
FullFileName = fullfile('Training Dataset', folders{i}, 'image_44.jpg');
See also

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by