how to resize the image
3 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have plotted 2 images in one figure using subplot
figure(1);
clf
set(gcf,'Position',[20, 180, 1280, 720])
subplot(1,2,1)
imshow(image_array{1,1})
subplot(1,2,2)
imshow(image_array{2,1})
and my plot looks like as shown in image.
I would like to increase the size of the image. How can I do that?
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2022 年 11 月 8 日
編集済み: KALYAN ACHARJYA
2022 年 11 月 8 日
"I would like to increase the size of the image. How can I do that?"
imresize
Or
You may be looked for? How can I keep figure window maximized when showing an image?
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Read, Write, and Modify Image についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!