Is it possible to show the x,y axis values for an image?

93 ビュー (過去 30 日間)
Ronan
Ronan 2016 年 9 月 8 日
コメント済み: Thorsten 2016 年 9 月 8 日
I m trying to use an image from matlab in a paper, but I want to show the x,y axis. However when you use imshow(myImage); it doesn't show the values on the x,y axis. i.e. these are coordinates of the pixels. How do I display this?

採用された回答

mizuki
mizuki 2016 年 9 月 8 日
Get the handle of the axis and set the 'Visible' property to 'on'
imshow('peppers.png');
h = gca;
h.Visible = 'On';
  5 件のコメント
Star Strider
Star Strider 2016 年 9 月 8 日
My pleasure.
Thorsten
Thorsten 2016 年 9 月 8 日
or use
axis on

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by