
How to label display image at different location ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi Mathwork Community,
How to label the image at the different location. Using a text function we can add the text at a different position. If display image displayed at various parts and wants to label it. I guess it will be clear from the example. Please find the image I wanted a label at the position shown in the figure Will appreciate your help.


0 commentaires
Réponses (1)
Gopichandh Danala
le 12 Avr 2018
I am assuming that you have a single image consisting of 7 sub-images.
img = imread('Problem.png');
[nrow, ncol,~] = size(img);
num_images = 7;
one_img_width = ncol/num_images;
shift = one_img_width/2;
col_locs = shift: one_img_width:ncol - shift; % col positions
row_locs = repmat(nrow+10, [1,num_images]); % row positions
txt_vals = {'Fig (a)', '(b)','(c)','(d)','(e)','(f)','(g)'};
figure, imshow(img,[]), title('Different texture samples')
text(col_locs,row_locs,txt_vals)

0 commentaires
Voir également
Catégories
En savoir plus sur Desktop dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!