"y-direction of the coordinate system should be reverted"

5 ビュー (過去 30 日間)
pizzaa
pizzaa 2023 年 6 月 5 日
コメント済み: Adam Danz 2023 年 6 月 5 日
I m kinda confused with this statement in matlab
I m trying to get x,y coordinat of and image, and someone told me that:
"y-direction of the coordinate system should be reverted"
Anyone can help me with this? ty so much
  1 件のコメント
Adam Danz
Adam Danz 2023 年 6 月 5 日
> I m trying to get x,y coordinate of and image
Does this mean you are indexing an image array and you'd like to vertically flip the image array or does that mean you want to verticallly flip the image?

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

採用された回答

Nathan Hardenberg
Nathan Hardenberg 2023 年 6 月 5 日
Normally the coordinate system starts at the top left of the image. Right is the positive x-axis and down is the positive y-axis. So the pixel in the top left would be (0,0) or (1,1) in MATLAB
Mabe this illustration helps:

その他の回答 (1 件)

Steven Lord
Steven Lord 2023 年 6 月 5 日
Images and "regular" plots have different conventions for whether the Y axis should be increasing or decreasing as you move towards the bottom of the page or screen. You can use the axis function to switch between the conventions, specifying 'ij' as the ydirection input argument to put the origin in the upper-left corner rather than the lower-left.
figure
plot(1:10)
title('image xy')
figure
plot(1:10)
axis ij
title('image ij')

Community Treasure Hunt

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

Start Hunting!

Translated by