Azzera filtri
Azzera filtri

overlay plot on imgage

94 visualizzazioni (ultimi 30 giorni)
Don
Don il 2 Ott 2017
Commentato: Cedric il 7 Ott 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

Risposta accettata

Cedric
Cedric il 2 Ott 2017
Modificato: Cedric il 2 Ott 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 Commenti
Don
Don il 7 Ott 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 il 7 Ott 2017
My pleasure!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Graphics Object Programming in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by