Effacer les filtres
Effacer les filtres

overlay plot on imgage

94 vues (au cours des 30 derniers jours)
Don
Don le 2 Oct 2017
Commenté : Cedric le 7 Oct 2017
I have images of artwork and plots of data from an eye tracker. I want to overlay the data plots on the images. A complication: artwork images come in different sizes. I think the subplot function will do some of this be I don't know how. Any help is greatly appreciated

Réponse acceptée

Cedric
Cedric le 2 Oct 2017
Modifié(e) : Cedric le 2 Oct 2017
hold on
for overlays, for example:
imshow( myImage ) ;
hold on ;
plot( x, y, 'rx' ) ;
and you will see the plot over the image. You can have more control by creating axes by yourself, but it is more complicated. For this, if you really have the time to learn, look at my answer here.
  13 commentaires
Don
Don le 7 Oct 2017
YAY! I think I got it -- imgLocator = fullfile(filepath, filename) ;, xPoints = xaxis; yPoints = yaxis;
This seems to work! You are a genius. Thank you Thank you Thank you
Cedric
Cedric le 7 Oct 2017
My pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Object Programming dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by