I have 3 images and i want to show them in 1 figure using subplot but they are too small, how can i make them bigger and more clear?

조회 수: 3 (최근 30일)
subplot(1,3,1)
imshow(image);
title('ORIGINAL IMAGE');
subplot(1,3,2);
imshow(B);
title('IMAGE AFTER LOCAL HISTOGRAM EQUALIZATION');
subplot(1,3,3);
imshow(F);
title('DIFFERENCE IN BOTH IMAGES');

답변 (1개)

Image Analyst
Image Analyst 2020년 7월 12일
Try
subplot(2,2,..........
It will make them a little taller.
  댓글 수: 2
MD MOSTAKIM ALAM SOHAG
MD MOSTAKIM ALAM SOHAG 2021년 1월 17일
Dear Sir please can you provide me a full code of plotting many images in one iamge. please see the sample of the image. plotting code should be same as this sample of the image. Thanks in advanced .from many image i also attached a single image . all those image are same file imformation.

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by