Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
pizzaa
pizzaa el 5 de Jun. de 2023
Comentada: Adam Danz el 5 de Jun. de 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 comentario
Adam Danz
Adam Danz el 5 de Jun. de 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?

Iniciar sesión para comentar.

Respuesta aceptada

Nathan Hardenberg
Nathan Hardenberg el 5 de Jun. de 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:

Más respuestas (1)

Steven Lord
Steven Lord el 5 de Jun. de 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')

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by