如何防止轴关闭删除字幕?
Posted
技术标签:
【中文标题】如何防止轴关闭删除字幕?【英文标题】:How to prevent axis off from removing the subtitle? 【发布时间】:2021-10-27 22:37:20 【问题描述】:如何防止axis off
去掉字幕? Nemely,我只想删除 x、y 轴,而不是字幕本身。
img = imread('cameraman.tif');
figure;
imagesc(img);
title('A');
subtitle('B');
如果我在末尾添加axis off
,它会给我:(字幕B
不见了......)
【问题讨论】:
【参考方案1】:您可以执行以下操作:
img = imread('cameraman.tif');
figure;
imagesc(img);
title('A');
subtitle('B');
set(gca,'xtick',[]);
set(gca,'xticklabel',[]);
set(gca,'ytick',[]);
set(gca,'yticklabel',[]);
【讨论】:
以上是关于如何防止轴关闭删除字幕?的主要内容,如果未能解决你的问题,请参考以下文章
Youtube API - 如何使用自定义控件打开/关闭字幕,更改语言?