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

1 Ansicht (letzte 30 Tage)
new to matlab

Antworten (1)

Image Analyst
Image Analyst am 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 Kommentare
daniel
daniel am 5 Okt. 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 am 5 Okt. 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).

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by