Read a specified list of images given the filename and the directory the files are in

9 ビュー (過去 30 日間)
Devdolly Saini
Devdolly Saini 2019 年 9 月 7 日
編集済み: Jeremy Hughes 2019 年 9 月 13 日
I am not too sure on how to write a function that takes in as inputs a string containing the name of a directory that the images are contained in, and a 1xn 1D array containing n strings where each element is a filename of an image to read.
the function needs to return one output; a 1D array containing n images where each element is an RGB image.
Any help would be appreciated:)

回答 (2 件)

Stephen23
Stephen23 2019 年 9 月 7 日
編集済み: Stephen23 2019 年 9 月 7 日
D = "path of the directory where the images are saved";
S = ["string array","of","the image filenames"];
N = numel(S);
C = cell(1,N);
for k = 1:N
F = fullfile(D,S(k));
C{k} = imread(F);
end
See also:
  3 件のコメント
Rik
Rik 2019 年 9 月 13 日
Comment posted as answer by Devdolly Saini:
how will i write a function for this piece of code though. sorry I am very new to MATLAB.
Walter Roberson
Walter Roberson 2019 年 9 月 13 日
What I posted is a function already. The only thing it is missing is returning the images as a 1d array.

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


Jeremy Hughes
Jeremy Hughes 2019 年 9 月 13 日
編集済み: Jeremy Hughes 2019 年 9 月 13 日
Datastores are convenient for reading collections of files.
imds = imageDatastore(directory)
imshow(read(imds))
Each time you call read, it will give the next image in the directory.

カテゴリ

Help Center および File ExchangeImages についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by