With MATLAB, it is easy to show an image, and then plot a point on the image. For example,
figure; imshow(image);
hold on; plot(x,y,'r*');
This can usually work if the point is within the image. When the coordinate (x,y) is not in the range of the image, however, it will not work. For example x=-100,y=-200, in this case, when we use the above codes, the point is not visible anymore. How can I make sure that the point is also visible? Thanks.