Adding axes to tiff images
Show older comments
Hi - I have some colormapped images, which I am saving in full resolution tiff files. I would like to add axes to the images - is there a way to do this, while preserving the image resolution? I have tried using the figure window, but there is a fall in the resolution. My final image sizes are typically larger than 10000X5000. Thanks for your answers in advance!
Answers (1)
Image Analyst
on 4 Jul 2013
Not sure what you mean "to the images" but if you just want tick marks and pixel "coordinates" on the left and under the axes where your image is displayed, you can just say "axis on" after you display it.
imshow(myBigImage);
axis on;
Categories
Find more on Images in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!