Display images in one figure

1 次查看(过去 30 天)
I am using a for loop to display n number of images. How can I display all my images in one figure dynamically? Thanks

采纳的回答

Thorsten
Thorsten 2015-11-17
编辑:Thorsten 2015-11-17
Use subplot:
for i =1:Nimages
I = ... % read ith image
subplot(Nrows, Ncols, i), imshow(I)
end

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by