我有一个用补丁覆盖的图像,我希望能够在同一个图形上显示多个图像,所有这些图像都具有不同的覆盖补丁。我尝试使用 subplot 命令,但它不起作用。我在下面定义了我的轴和父图。
hFig = figure;
hAx = axes('Parent',hFig);
hAx2 = axes('Parent',hFig);
fh = figure('units','pixels',...
'position',[300 300 440 500],...
'menubar','none',...
'name','SliderTool',...
'numbertitle','off',...
'resize','off');
subplot(1,2,1) imshow(image1,'Parent','hAx');
patch(....,'parent', 'hAx');
subplot(1,2,2) imshow(image2,'Parent','hAx2');
patch(....,'parent', 'hAx2');
这是我想做的事情的基本想法,但由于某种原因我无法让它发挥作用。我是否错误地使用了把手?