Plotting Images on a Subplot from a Loop
Ältere Kommentare anzeigen
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 Kommentare
Star Strider
am 31 Mär. 2019
‘ ... it just has an issue with the subplot ...’
Which is ... ?
dpb
am 31 Mär. 2019
"it just has an issue with the subplot"
And what might that be?
The crystal ball is in the shop (yet) again...
Lizzy tatarek
am 31 Mär. 2019
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Image Arithmetic finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
