how to get folder name

4 views (last 30 days)
Elysi Cochin
Elysi Cochin on 26 Oct 2013
Answered: Walter Roberson on 26 Oct 2013
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.....

Accepted Answer

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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!