Display images in one figure

1 回表示 (過去 30 日間)
Leonard Yeo
Leonard Yeo 2015 年 11 月 17 日
コメント済み: virpartap singh 2015 年 11 月 17 日
I am using a for loop to display n number of images. How can I display all my images in one figure dynamically? Thanks
  1 件のコメント
virpartap singh
virpartap singh 2015 年 11 月 17 日
use subplot command

サインインしてコメントする。

採用された回答

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 件)

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by