Imagesc - insert grid lines

5 次查看(过去 30 天)
Jonathan
Jonathan 2011-10-26
Hello,
m = 21 x 21 matrix
I want to draw grid lines onto the imagesc figure to signify certain groupings. And I don't want to do this manually since I have ~20 of these.
eg. black box around [1:3,1:3] to indicate that 1:3 is one group. red box around [5:10,5:10]

采纳的回答

Wayne King
Wayne King 2011-10-26
imagesc(randn(21,21));
hold on;
h1 = rectangle('position',[1 1 3 3]);
set(h1,'EdgeColor',[0 0 0],'linewidth',3);
h2 = rectangle('position',[5 5 10 10]);
set(h2,'EdgeColor',[1 0 0],'linewidth',3);
  1 个评论
Image Analyst
Image Analyst 2011-10-27
Oh, is that what she wanted? Just simply displaying lines going from pixel center to pixel center? That's easy. I thought she wanted to go *around* the pixels, like right along the edges of the pixels, not through the centers, like Steve Eddins did on his recent blog entry.

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by