フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

I am just wondering , is there any way to show 8 images in a 2*4 matrices or not?if so , how?

1 回表示 (過去 30 日間)
Akshit
Akshit 2015 年 3 月 10 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I am just wondering , is there any way to show 8 images in a 2*4 matrices or not?if so , how?

回答 (1 件)

Image Analyst
Image Analyst 2015 年 3 月 10 日
Yes. You can either use the montage function if you have filenames, or stitch the images together
bigImage = [image1, image2, image3, image4; image5, image6, image7, image8];
imshow(bigImage);
Note the semicolon after image4 - not a comma like the rest.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by