gpt4 book ai didi

matlab - 在matlab中扩展子图函数

转载 作者:行者123 更新时间:2023-12-04 04:42:26 25 4
gpt4 key购买 nike

大家好,我在 matlab 中遇到了一些问题:

假设我有 5 个图像,我想在 matlab 图形窗口中绘制所有图像。我怎么能这样做?意思是我想在第一行放两张图片,在第二行放三张图片。我实际上想要这个输出。

enter image description here

或者像这样:

enter image description here

请记住,我想将两个图形窗口顶行中的图像居中对齐。简而言之,我想知道如何在 matlab 图形窗口中专门设置子图的位置?

还有什么方法可以为我的图形窗口提供主标题?我不想使用功能 SUPLABEL

我使用的代码是这样的:

h1=figure;
subplot(2,3,1);imshow(I_orignial);title('The original Image','FontWeight','bold','FontSize', 12);
subplot(2,2,2);imshow(aa1); title('1st segment','FontWeight','bold','FontSize', 12);
subplot(2,2,3);imshow(aa2); title('2nd segment','FontWeight','bold','FontSize', 12);
subplot(2,2,4);imshow(aa3); title('3rd segment','FontWeight','bold','FontSize', 12);

%//Please note that aa1,aa2 & aa3 are logical arrays and I_orignial is an uint8 image.
%//The size of the logical arrays is 64X64.
%//The size of the image is 160X221.

无论如何,在显示在图形上之前,我可以将子图图像的大小调整为特定大小吗?我的意思是如何在 matlab 图形上将不同大小的图像强制为相同的子图大小?请注意:我不是在谈论 imresize。

如需进一步说明,请回复我!

提前致谢!!

最佳答案

如果您想使用 subplot ,而不是直接指定轴位置,您必须在脑海中将图形拆分为最小的均匀区域,然后将它们组合成绘图。例如,要拥有三个大小相同的图,一个在顶部,两个在底部,您可以这样做:

firstAxes =  subplot(2,4,2:3);
secondAxes = subplot(2,4,5:6);
thirdAxes = subplot(2,4,7:8);

如果要执行更复杂的操作,例如将文本放在特定位置,最好直接创建显示对象。例如:
   fh = figure;
hiddenAxes = axes('parent',fh,'units','normalized','position',[0 0 1 1],'color','w','xcolor','w','ycolor','w','xlim',[0 1],'ylim',[0 1]);
text('parent',hiddenAxes','position',[0.25 0.9 0.5 0.1],'horizontalAlignment','center','string','this is a centered title','fontWeight','bold')
firstAxes = axes('parent',fh,'units','normalized','position',[0.25 0.5 0.5 0.45]);
secondAxes = axes('parent',fh,'units','normalized','position',[0 0 0.5 0.45]);
thirdAxes = axes('parent',fh,'units','normalized','position',[0.5 0 0.5 0.45]);

要控制图像大小,您需要更改轴限制。

关于matlab - 在matlab中扩展子图函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18686122/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com