reading an image
10 ビュー (過去 30 日間)
古いコメントを表示
I have a code
X=zeros(256,256,15)
for x = 1:length(dirlist)
i = imread([pathname, dirlist(x).name]);
A=i;
X(:,:,x)=A;
save X
end
load X
i have saved 15 images in X,i have used load command,now please tell how to read those images
1 件のコメント
Geoff
2012 年 5 月 29 日
Is there an error? Is it "subscripted assignment dimension mismatch" (or something like that)? Are your images colour? Are they actually 256x256? Why are you saving X every time around the loop?
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Read, Write, and Modify Image についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!