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.

Community Treasure Hunt

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

Start Hunting!

Translated by