Filter löschen
Filter löschen

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

3 Ansichten (letzte 30 Tage)
pizzaa
pizzaa am 5 Jun. 2023
Kommentiert: Adam Danz am 5 Jun. 2023
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 Kommentar
Adam Danz
Adam Danz am 5 Jun. 2023
> 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?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Nathan Hardenberg
Nathan Hardenberg am 5 Jun. 2023
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:

Weitere Antworten (1)

Steven Lord
Steven Lord am 5 Jun. 2023
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