Imshow vs mesh: Filter response flipped?

This is the same 2-D frequency response plotted using imshow and mesh. Why is the response flipped in imshow?
Using imshow:
Using mesh:

 Accepted Answer

By convention for images the origin is the top left corner and the y axis points down. You can see that clearly if you make the axis visible after displaying your image:
imshow(yourimage);
axis on

2 Comments

Thanks for the explanation! Is there a way to move the origin? to bottom-left and center?
axis xy
to force the y axis to go up instead of down.

Sign in to comment.

More Answers (0)

Categories

Find more on Display Image in Help Center and File Exchange

Asked:

on 4 Nov 2017

Commented:

on 4 Nov 2017

Community Treasure Hunt

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

Start Hunting!