Use slider parameter to plot over image

1 visualización (últimos 30 días)
Giorgio
Giorgio el 2 de Oct. de 2013
Comentada: Image Analyst el 3 de Oct. de 2013
I created a script containing axes and a slider following GUI guide. I was able to plot a function depending by parameters related to the slider. I would like to plot the graph of the function over a given image. How could i do that?

Respuesta aceptada

Image Analyst
Image Analyst el 2 de Oct. de 2013
Editada: Image Analyst el 2 de Oct. de 2013
Use "hold on" and then call plot. Realize thought that the y axis direction is flipped so you need to set ydir = 'reverse' when you do the plot. And the x axis values must correspond to pixels, like they do for the image.
  2 comentarios
Image Analyst
Image Analyst el 2 de Oct. de 2013
Giorgios comment moved here since it it not an "Answer":
Ok, but this way I overwrite every function I plot scrolling the slider...
Image Analyst
Image Analyst el 2 de Oct. de 2013
It should not, not if you used "hold on" like I said. You'll have to show your code including imshow(), hold on, and plot() before we can debug more.

Iniciar sesión para comentar.

Más respuestas (1)

Giorgio
Giorgio el 3 de Oct. de 2013
Sorry, I wrote bad. I would like every function plotted overwrite the previous one. I need there is only one function plotted over the image.
  3 comentarios
Giorgio
Giorgio el 3 de Oct. de 2013
But I must plot the graph over the image. Anyway i solved using
cla(hAx,'reset')
Thanks for all.
Image Analyst
Image Analyst el 3 de Oct. de 2013
The graph will not be over any image you put into the axes. Using cla reset will totally blow away the image in the axes and replace it with just the graph alone.

Iniciar sesión para comentar.

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by