How to change scale of y-axes of an image displayed with imagesc?
28 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Miguel
el 28 de Mzo. de 2024
Comentada: Miguel
el 12 de Abr. de 2024
Hi everyone,
I have spent a lot of time trying to change the scale of the y-axes of the image shown below from 0-200 (pixels) to 0-45 (mm). Can any of you help me figure this out? To display the image, I am using imagesc.
Thank you so much for your help!
0 comentarios
Respuesta aceptada
DGM
el 28 de Mzo. de 2024
imagesc() supports the specification of the x and y ranges. I don't know what your x range should be, but since this example image is square, I'm using the same for both x and y.
inpict = imread('cameraman.tif');
imagesc([0 45],[0 45],inpict)
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!