Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
I am just wondering , is there any way to show 8 images in a 2*4 matrices or not?if so , how?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am just wondering , is there any way to show 8 images in a 2*4 matrices or not?if so , how?
0 Kommentare
Antworten (1)
Image Analyst
am 10 Mär. 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.
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!