Imread Image using pwd?
3 views (last 30 days)
Show older comments
Oman Wisni
on 16 Jan 2019
Commented: Oman Wisni
on 17 Jan 2019
Hi, is there any way to create code for imread image using pwd, without declarad specific directory?
like :
im = imread(pwd,'.bmp');
could help me for this? thank you
0 Comments
Accepted Answer
Walter Roberson
on 16 Jan 2019
projectdir = pwd;
for K = 1 : 10
basename = sprintf('subject_%05d_sagital.bmp', K);
fullname = fullfile(projectdir, basename);
im = imread(fullname);
end
3 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!