フィルターのクリア

[HELP ] problem in reading multiple images

2 ビュー (過去 30 日間)
Muahammad Younas
Muahammad Younas 2018 年 3 月 3 日
コメント済み: KALYAN ACHARJYA 2018 年 3 月 17 日
i am trying to access multiple images from my file directory to load it into an array using for loop in matlab .... and convert it into double format please help me out ..... thanks in advance

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 3 月 3 日
編集済み: KALYAN ACHARJYA 2018 年 3 月 17 日
% Please save all images name in a symmetric manner before doing the operation
% names for example im1,im2,im3...
%Save the folder of images in the current directory
path_directory='folder_name'; % 'Folder name'
original_files=dir([path_directory '/*.jpg']);
for k=1:length(original_files)
filename=[path_directory '/' original_files(k).name];
image_orginal=imread(filename);
% Image read is done
% Do operation Double conversion
%double_image=...
end
  2 件のコメント
Muahammad Younas
Muahammad Younas 2018 年 3 月 3 日
KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 3 月 17 日
Share your code screenshot

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

カテゴリ

Help Center および File ExchangeImport, Export, and Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by