Effacer les filtres
Effacer les filtres

title for displaying multiple images using montage function

53 vues (au cours des 30 derniers jours)
Kiruthiga Sekar
Kiruthiga Sekar le 6 Jan 2021
Commenté : kotchakon le 5 Mar 2023
Hi,
Is it possible to add title to four images that are displayed using montage? Or is there any other similar function which can be used to display multiple images along with title? Thanks in advance

Réponses (1)

Adam Danz
Adam Danz le 6 Jan 2021
> Is it possible to add title to four images that are displayed using montage?
No. Image data are combined into a single image on a single axis when using montag() or imtile(). You can add a single title using the title() function. You can use the text() function to add what appears to be titles to each tiled sub-image but you'll need to compute the upper-center of each sub-image to place the titles in the right place and the title text will be plotted on top of the sub-images.
> is there any other similar function which can be used to display multiple images along with title?
A single function, no. But you can plot each image within their own axes using subplot, TiledLayout, or with axex() to create the axes and imshow to plot the images.
Demo using TiledLayout:
img{1} = imread('AT3_1m4_01.tif'); % built-in images
img{2} = imread('AT3_1m4_02.tif');
img{3} = imread('AT3_1m4_03.tif');
img{4} = imread('AT3_1m4_04.tif');
fig = figure();
tlo = tiledlayout(fig,2,2,'TileSpacing','None');
for i = 1:numel(img)
ax = nexttile(tlo);
imshow(img{i},'Parent',ax)
title(['Image ', num2str(i)])
end
  1 commentaire
kotchakon
kotchakon le 5 Mar 2023
Great job! Now, I can title mutiple image. So easy! Thanks

Connectez-vous pour commenter.

Catégories

En savoir plus sur Scripts dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by