Superimposing a line plot onto an image
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
My code so far:
figure
plot(x, y);
title('Angle');
xlabel('Horizontal Distance');
ylabel('Height');
I have an image but I don't know how to superimpose the image onto the plot.
0 Commenti
Risposte (1)
Image Analyst
il 31 Mar 2016
Call imshow() to display your image first. Then put "hold on" and do your plotting.
3 Commenti
Walter Roberson
il 31 Mar 2016
And we are intended to guess what size the image is and what part of the image you want the plot drawn over ?
Image Analyst
il 31 Mar 2016
What are the dimensions of the image, and what is the range of x and y values you want to plot over it?
Vedere anche
Categorie
Scopri di più su Histograms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!