how to add titles row wise in the montage ?

29 次查看(过去 30 天)
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 个评论
Adam Danz
Adam Danz 2021-4-6
编辑:Adam Danz 2021-4-6
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.

请先登录,再进行评论。

采纳的回答

darova
darova 2021-4-6
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 个评论
hp
hp 2021-4-22
Thank you for the information . Next time surely i will use Code box to write the code..

请先登录,再进行评论。

更多回答(1 个)

hp
hp 2021-4-26
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

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by