Borrar filtros
Borrar filtros

overlay plot on imgage

94 visualizaciones (últimos 30 días)
Don
Don el 2 de Oct. de 2017
Comentada: Cedric el 7 de Oct. de 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

Respuesta aceptada

Cedric
Cedric el 2 de Oct. de 2017
Editada: Cedric el 2 de Oct. de 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 comentarios
Don
Don el 7 de Oct. de 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 el 7 de Oct. de 2017
My pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by