Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
Akshit
Akshit le 10 Mar 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
I am just wondering , is there any way to show 8 images in a 2*4 matrices or not?if so , how?

Réponses (1)

Image Analyst
Image Analyst le 10 Mar 2015
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.

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by