Imread Image using pwd?

10 Ansichten (letzte 30 Tage)
Oman Wisni
Oman Wisni am 16 Jan. 2019
Kommentiert: Oman Wisni am 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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 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 Kommentare
Walter Roberson
Walter Roberson am 16 Jan. 2019
see uigetfile
Oman Wisni
Oman Wisni am 17 Jan. 2019
Yes sir, I already got what I need for this. Thank you for the answer

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by