MATLAB 中图形中的网格

发布于 2024-11-18 15:51:26 字数 86 浏览 3 评论 0原文

我想向 MATLAB 中打开的图形添加线条,例如将图形拆分为 15 行,而不将其绘制在轴上(我希望输入的任何网格都成为非交互式背景的一部分)。这是怎么做到的?

I'd like to add lines to an opened figure in MATLAB e.g. splitting the figure into 15 rows, without plotting it on an axes (I want whatever grid I input to be part of a non interactive background). How is this done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇妻 2024-11-25 15:51:26

下面介绍了如何操作网格线,以呈现将图像划分为 15x15 块的外观,而无需将每个块绘制在单独的轴上。

img=imread('peppers.png');
imagesc(img)
[nX,nY,~]=size(img);
nSeg=15;

set(gca,'xtick',linspace(0,nY,15+1),'xticklabel',[],...
    'xgrid','on','xcolor','w',...
    'ytick',linspace(0,nX,15+1),'ytickLabel',[],...
    'ygrid','on','ycolor','w',...
    'gridLineStyle','-','linewidth',1)

在此处输入图像描述


空白图形:

要分割空白图形,

nSeg=15;
set(gca,'xtick',linspace(0,1,15+1),'xticklabel',[],...
    'xgrid','on','xcolor','k',...
    'ytick',linspace(0,1,15+1),'ytickLabel',[],...
    'ygrid','on','ycolor','k',...
    'gridLineStyle','-','linewidth',1)

在此处输入图像描述

Here's how you can manipulate the grid lines so as to give the appearance of dividing the image into 15x15 blocks, without having to plot each on a separate axes.

img=imread('peppers.png');
imagesc(img)
[nX,nY,~]=size(img);
nSeg=15;

set(gca,'xtick',linspace(0,nY,15+1),'xticklabel',[],...
    'xgrid','on','xcolor','w',...
    'ytick',linspace(0,nX,15+1),'ytickLabel',[],...
    'ygrid','on','ycolor','w',...
    'gridLineStyle','-','linewidth',1)

enter image description here


Blank figure:

To divide a blank figure,

nSeg=15;
set(gca,'xtick',linspace(0,1,15+1),'xticklabel',[],...
    'xgrid','on','xcolor','k',...
    'ytick',linspace(0,1,15+1),'ytickLabel',[],...
    'ygrid','on','ycolor','k',...
    'gridLineStyle','-','linewidth',1)

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文