How to display axis on the image ?

45 visualizzazioni (ultimi 30 giorni)
agatte
agatte il 6 Dic 2016
Modificato: agatte il 6 Dic 2016
Hello,
I have a question how to display visible arbitrary axis on the image when I plot something on the image ? Like here :
I would appreciate for any help please :)
  5 Commenti
agatte
agatte il 6 Dic 2016
yes, I know that they are arbitrary oriented. But I dont know exactly how to display arbitrary oriented axes ?
Adam
Adam il 6 Dic 2016
I don't think you can in normal Matlab. Maybe something in the file exchange can do this.

Accedi per commentare.

Risposte (1)

KSSV
KSSV il 6 Dic 2016
Modificato: KSSV il 6 Dic 2016
Normal axis
imshow('yourimage') ;
axis on
As shown on image
imshow('image.png')
pts = [ 4 67
142 12
137 3
176 107];
hold on
plot(pts(1:2,1),pts(1:2,2),'r') ;
plot(pts(3:4,1),pts(3:4,2),'r') ;

Categorie

Scopri di più su Convert Image Type 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!

Translated by