I am using a for loop to display n number of images. How can I display all my images in one figure dynamically? Thanks

 Réponse acceptée

Thorsten
Thorsten le 17 Nov 2015
Modifié(e) : Thorsten le 17 Nov 2015

0 votes

Use subplot:
for i =1:Nimages
I = ... % read ith image
subplot(Nrows, Ncols, i), imshow(I)
end

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by