How do you plot a line between two coordinates on a binary and color image?

1 vue (au cours des 30 derniers jours)
daniel
daniel le 16 Sep 2015
Commenté : Image Analyst le 5 Oct 2015
new to matlab

Réponses (1)

Image Analyst
Image Analyst le 16 Sep 2015
The image type does not matter. Just put hold on and then call line()
hold on;
line([x1,x2], [y1,y2], 'Color', 'r', 'LineWidth', 3);
Or you can call plot() if you want
hold on;
plot([x1,x2], [y1,y2], 'r-', 'LineWidth', 3);
Or in terms of rows and columns
hold on;
line([col1,col2], [row1,row2], 'Color', 'r', 'LineWidth', 3);
  2 commentaires
daniel
daniel le 5 Oct 2015
It does not seem to work,gives this error,error using line Vectors must be the same lengths ,not sure why.
Image Analyst
Image Analyst le 5 Oct 2015
I don't know why either. How could I possibly know? You haven't shared anything helpful. If you want help, post your code and the full error message (everything in red).

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by