"y-direction of the coordinate system should be reverted"
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaire
Adam Danz
le 5 Juin 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?
Réponse acceptée
Nathan Hardenberg
le 5 Juin 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:
0 commentaires
Plus de réponses (1)
Steven Lord
le 5 Juin 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')
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!