How to display axis on the image ?

27 次查看(过去 30 天)
agatte
agatte 2016-12-6
编辑: agatte 2016-12-6
Hello,
I have a question how to display visible arbitrary axis on the image when I plot something on the image ? Like here :
I would appreciate for any help please :)
  5 个评论
agatte
agatte 2016-12-6
yes, I know that they are arbitrary oriented. But I dont know exactly how to display arbitrary oriented axes ?
Adam
Adam 2016-12-6
I don't think you can in normal Matlab. Maybe something in the file exchange can do this.

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2016-12-6
编辑:KSSV 2016-12-6
Normal axis
imshow('yourimage') ;
axis on
As shown on image
imshow('image.png')
pts = [ 4 67
142 12
137 3
176 107];
hold on
plot(pts(1:2,1),pts(1:2,2),'r') ;
plot(pts(3:4,1),pts(3:4,2),'r') ;

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by