MATLAB: How to change the origin axis of image

image processing

So I have an image 201*181 pixel, I have already plot the axis along the image the result like the pic below. Now I want to chage the origin of axis to the position i mark. Can anyone help me please, i know this is a simple problem but I cant seem to know the right function to do that.Capture.PNG

Best Answer

ax = gca;
set(ax, 'YTickLabel', get(ax, 'YTick') - 100 )