MATLAB: Why getpts doesn’t give the correct points

getptsimageimage analysisimage processing

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*')

Best Answer

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.
Related Question