Plotting Images on a Subplot from a Loop
이전 댓글 표시
Hello,
I am using a loop to load and analyse images, I now want to be able to load a sample of the images and plot them on a subplot.
so far this is what I have tried, it just has an issue with the subplot, have sucesfully loaded all the images.
Any suggestions?
figure
x=0;
for K = 431:10:481
FileName=strcat('Embryo1_', sprintf('%03d',K),'.tif');
I = imread(FileName);%load image
x=x+1;
subplot(1,6,x)
imshow(I)
end
댓글 수: 3
Star Strider
2019년 3월 31일
‘ ... it just has an issue with the subplot ...’
Which is ... ?
dpb
2019년 3월 31일
"it just has an issue with the subplot"
And what might that be?
The crystal ball is in the shop (yet) again...
Lizzy tatarek
2019년 3월 31일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
