how to add titles row wise in the montage ?

32 views (last 30 days)
hp
hp on 6 Apr 2021
Edited: darova on 22 May 2021
I have multiple image categories.. how to display row wise title in the montage function while displaying the images ..
if its not possible by montage how to display row wise titles using subplot for multiple image categories .. as in reference image attached here
  1 Comment
Adam Danz
Adam Danz on 6 Apr 2021
Edited: Adam Danz on 6 Apr 2021
I don't think that example image uses montage().
It probably just uses subplot() or, tiledlayout.
Also note that each row has an odd number of images which makes it easy to center a title by merely assigning it to the middle image in each row.

Sign in to comment.

Accepted Answer

darova
darova on 6 Apr 2021
What about text function?
load mri
montage(D, map)
text(500,25,'TITLE 1','fontsize',30,'color','yellow','fontweight','bold')
text(500,200,'TITLE 2','fontsize',30,'color','yellow','fontweight','bold')
  4 Comments
darova
darova on 7 Apr 2021
Please learn to use code button
hp
hp on 22 Apr 2021
Thank you for the information . Next time surely i will use Code box to write the code..

Sign in to comment.

More Answers (1)

hp
hp on 26 Apr 2021
to display title at the left side of the montage we can use index in negative values
montage(img(),'size',[10,10])
%-----------------------------------------------------
%Display title on each row of montage
offset=0;
for i=1:numel(Qclass)
text(-120,0+offset,Qclass(i),'fontsize',10,'color','blue','fontweight','bold') %works perfectly
offset=offset+55;
end
  1 Comment
Adam Danz
Adam Danz on 26 Apr 2021
Edited: Adam Danz on 26 Apr 2021
Wouldn't it be cleaned and easier to use ytick labels instead?

Sign in to comment.

Categories

Find more on Display Image in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!