how can I plot a graph over an image in Matlab?
349 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
DARSHAN KUMAR BISWAS
le 30 Juin 2022
Commenté : Vaughan Clarkson
le 20 Oct 2024
I want to plot the graph over the 1st image.
0 commentaires
Réponse acceptée
Kevin Holly
le 30 Juin 2022
Load Example Image
exampleimage = imread('peppers.png');
Flip the image vertically (y-axis direction will be flipped vertically later)
exampleimage = flipud(exampleimage);
Display image
imshow(exampleimage)
Use hold on so more children can be added to the axes
hold on
Create scatter plot
x=1:20:300;
y=x;
scatter(x,y,'filled','w')
Change y-dir to normal (Note, y-dir is upside down when images are displayed by default)
set(gca,'YDir','normal') %gca stand for get current axes
7 commentaires
Adam Danz
le 5 Juil 2022
The question is continued here:
Vaughan Clarkson
le 20 Oct 2024
I have a slight variation on the original question which has bugged me for years.
What if (a) the image you're wanting to plot over the top of is larger than your screen and (b) you afterwards want to retrieve the modified pixel data in the original image size?
The problem I run into with Kevin's otherwise excellent solution is that, if the image is larger than the screen size, the imshow command will resize it to fit the screen.
Plus de réponses (2)
Adam Danz
le 30 Juin 2022
Plot the image using image or imagesc or some other image function that allows you to specify the x and y values of the image. That way you set the image coordinates to the data coordinates.
Then just hold on and plot the data into the same axes.
Note that image functions flip the y axis so you may need to flip it back to normal using set(gca, 'YDir','Normal') or flip your data when you plot it.
If you have additional questions, share the code you've got so far and let us know specificially where you're stuck.
2 commentaires
Rik
le 30 Juin 2022
You need to use the same axes. The easiest solution is to use hold, probably the line below will already do what you need:
hold(gca,'on')
Voir également
Catégories
En savoir plus sur Display Image dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!