tiandsp
cl;
raw=zeros(200,256,30);
for i=1:30
filename=strcat(\'F:\算法实验\data\seq3\\',int2str(i),\'.bmp\');
raw(:,:,i)=imread(filename);
end

方法二:

cl;
img=cell(1,30);
for i=1:30
  filename=strcat(\'F:\算法实验\data\seq3\\',int2str(i),\'.bmp\');
  img{i}=imread(filename);
end


分类:

技术点:

相关文章:

  • 2021-05-31
  • 2021-12-14
  • 2021-11-30
  • 2021-11-23
  • 2021-08-05
  • 2021-08-17
  • 2021-09-16
  • 2021-10-29
猜你喜欢
  • 2021-11-19
  • 2021-11-19
  • 2022-01-16
相关资源
相似解决方案