Changing axis values without changing image size
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I'm using MATLAB R2021a.
I'm currently displaying an image using this code:
I = imread('imagename');
figure
imshow(I);
axis on;
and then I'm using this code to plot rectangles onto the image:
rectangle('Position', [x,y,w,h], 'EdgeColor','r');
the code is working fine, however I would like to change the x and y values of the image to be different values, while still keeping the same size image. For reference, the image is 1600x900 pixels, but I would like to have the axis values be in degrees so I can plot the rectangles using their degree values. Any help would be appreciated!
0 Commenti
Risposte (1)
Walter Roberson
il 8 Giu 2021
For that kind of purpose I recommend switching to use image() or imagesc() instead of imshow(). When you use image() or imagesc() then you can pass x and y data coordinates to position the image at. See the XData and YData properties on the image() documentation.
0 Commenti
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!