필터 지우기
필터 지우기

how can i save some image in cell array and then display them in a figure by sequence

조회 수: 7 (최근 30일)
how can i save some image in cell array and then display them in a figure by sequence
[n,p]=uigetfile('*.*');
a=imread([p,n]);
[n1,p1]=uigetfile('*.*');
b=imread([p1,n1]);
[n2,p2]=uigetfile('*.*');
c=imread([p2,n2]);
cell{1} = a;
cell{2} = b;
cell{3} = c;
for i=1:length(cell)
imshow(cell(i));
end
it doesnt work

채택된 답변

Image Analyst
Image Analyst 2014년 4월 5일
I see no reason to save the images in a cell array. Just display them and process them inside the loop and don't bother saving them for later. It just takes up memory that you probably don't need to do.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by