Missing axis in uiaxes - matlab

Viewed 149

I used app designer to build an image viewer GUI. When I load an image to app.UIAxes the axis ticks disappear. Any idea how to solve it?

enter image description here

1 Answers

Option 1: Add axis('on');

Option 2: Check the 'Axes visible' option in the Image Processing Toolbox Preferences

enter image description here

Related