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 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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');
Antworten (1)
Image Analyst
am 12 Jul. 2020
Try
subplot(2,2,..........
It will make them a little taller.
2 Kommentare
MD MOSTAKIM ALAM SOHAG
am 17 Jan. 2021
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.
Image Analyst
am 8 Mai 2023
@MD MOSTAKIM ALAM SOHAG see the FAQ for code snippets: https://matlab.fandom.com/wiki/FAQ#How_can_I_process_a_sequence_of_files?
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!