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?

18 次查看(过去 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.

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by