why getpts doesn't give the correct points?

4 visualizaciones (últimos 30 días)
David Armendáriz
David Armendáriz el 20 de Abr. de 2019
Respondida: Walter Roberson el 20 de Abr. de 2019
I have the following image:
car1.PNG
When I plot the points got by getpts, the image is flipped upside down:
car2.PNG
My code is the following:
figure
imshow("carro.png")
[x,y] = getpts;
plot(x,y,'b*')

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de Abr. de 2019
imshow() by default sets YDir reverse so that the "top" of the array (lowest row number) appears at the top of the screen (which would otherwise correspond to highest row number).
When you then plot the points without YDir reverse then they appear upside down.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by