What is command or way to represent 8 images in 2 different figues ??

1 回表示 (過去 30 日間)
Rushabh
Rushabh 2015 年 4 月 14 日
コメント済み: Thorsten 2015 年 4 月 15 日
I know that we can use subplot for combining images. but resolution decreses as we increase images. So I want to use figure 1 and figure 2 both containing 4 images. Please help me..

採用された回答

Thorsten
Thorsten 2015 年 4 月 14 日
figure(1)
subplot(2,2,1), imshow(I1)
subplot(2,2,2), imshow(I2)
subplot(2,2,3), imshow(I3)
subplot(2,2,4), imshow(I4)
figure(2)
subplot(2,2,1), imshow(I1)
subplot(2,2,2), imshow(I2)
subplot(2,2,3), imshow(I3)
subplot(2,2,4), imshow(I4)
or in each figure
imshow([I1 I2; I3 I4]
  2 件のコメント
Rushabh
Rushabh 2015 年 4 月 14 日
編集済み: Rushabh 2015 年 4 月 14 日
Thanks sir Its perfect. Last code of your reply
imshow([I1 I2; I3 I4]
is not showing me images. can i know why ?
Thorsten
Thorsten 2015 年 4 月 15 日
This shows montages the four images in a single image using a 2x2 arrangement. It works only if the images have the same size and same dimension. If the values in the images have different ranges than Matlab cannot show them appropriately. Try normalizing the individual images to the interval [0, 1] before montage.

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

その他の回答 (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