how to create stack with multiple images?
8 次查看(过去 30 天)
显示 更早的评论
Hi all,
I have a series of images and I want to make stacks of the images. The dimension of the stack should be like 2490*2490*7.
Here is the code I worte.
b=cell(7,9);
I_max=cell(7,9);
I_stack_store=cell(9,1);
I_stack=zeros(2975,2975,7);
for t=1:9
for i=1:7
I=imread(['calibrate2-P01.00' num2str(t) '00' num2str(i) '.tif']);
b{i,t}=I;
I_max{i,t}=max(b{i,t},[],3);
I_stack(:,:,7)=I_max{:,t};
I_stack_store{t}=I_stack;
end
end
I_max is a 7x9 array with each cell one image. (e.g. 2490*2490)
I want to get every column (7 images) of I_max into a stack, resulting 9 stacks which can be stored into a new array.
There must be something wrong with my code because I did not have the image l want.
Can someone help?
Thanks a lot!
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!