Can anyone help me understand this code?

1 回表示 (過去 30 日間)
anand rathod
anand rathod 2020 年 7 月 5 日
コメント済み: anand rathod 2020 年 7 月 5 日
clc;
clear ;
close all;
cl = {'open','close'};
DBL = cell(1,1);
DBR = cell(1,1);
DBM = cell(1,1);
dim = [30 60;
30 60
40 65];
disp('Training left eye');
for ii = 1:2
disp(cl{ii})
fpath = ['C:\Users\DELL\Database\LE\' cl{ii} '/*.bmp'];
D = dir(fpath);
for kk = 1:length(D)
impath = ['C:\Users\DELL\Database\LE\' cl{ii} '/' D(kk).name];
I = imread(impath);
Is = imresize(I,[dim(1,1) dim(1,2)]);
DBL{ii,kk} = Is;
imshow(Is);
pause(0.01)
end
end

採用された回答

Image Analyst
Image Analyst 2020 年 7 月 5 日
This crude code reads in images and resizes and displays them. It also (for some reason) stores them in a cell array.
  3 件のコメント
Image Analyst
Image Analyst 2020 年 7 月 5 日
Yes, it put it into one cell of a cell array. Please see the FAQ for an excellent discussion cell arrays.
anand rathod
anand rathod 2020 年 7 月 5 日
Thank you

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by