필터 지우기
필터 지우기

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일)
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