how to fix subplot images

1 回表示 (過去 30 日間)
mohd akmal masud
mohd akmal masud 2021 年 9 月 22 日
コメント済み: mohd akmal masud 2021 年 9 月 22 日
Hi all,
I have 41 images. its start with name 65.png till 105.png.
I want to view image from no. 16 till no. 35. I wrote this below command.
for ii=16:35
subplot(6,6,ii)
I = readimage(IMDS,ii);
[C,scores] = semanticseg(I,net1);
B = labeloverlay(I,C);
outt2=C=="foreground";
st2=strel('disk',0);
outt22=imopen(outt2,st2);
title('input')
imshow(outt22)
end
But the images appear like below.
How to shift the image to the top of the figure, So that my image can view more bigger than.
Anyone could help me?

採用された回答

Matt J
Matt J 2021 年 9 月 22 日
編集済み: Matt J 2021 年 9 月 22 日
subplot(4,5,ii-15)
  1 件のコメント
mohd akmal masud
mohd akmal masud 2021 年 9 月 22 日
tqvm. its work

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by