Borrar filtros
Borrar filtros

Draw line on image with known slope

3 visualizaciones (últimos 30 días)
Kamu
Kamu el 3 de Dic. de 2018
Comentada: Adam Danz el 4 de Dic. de 2018
Given Point A and B and a line equation y = mx + c. I calculated the intercept and slope.
Now I want to draw a line (linspace function) from point A to the image boundary. It worked for lines with small gradients but failed for a nearly 'vertical line'.
I used the following code:
imshow(I)
xlims = xlim(gca);
ylims = ylim(gca);
The problem with vertical lines is shown in the screenshot. What I want is that the blue line stops at the image boundary because there are only 5 magenta 'plus' coordinates within the image, which is too less.
Screenshot 2018-12-03 at 15.18.26.png

Respuesta aceptada

Adam Danz
Adam Danz el 3 de Dic. de 2018
Editada: Adam Danz el 3 de Dic. de 2018
If you have the staring point (A,B), the slope (m) the y-intercept (yint), and the axis limits XL, YL (where XL and YL are (min,max) pairs), you can calculate the end point of the line where it crosses the border of your axes. Then use the start coordinate and end coordinate to draw a line via plot().
% record your axis limits
XL = xlim(gca);
YL = ylim(gca);
hold(gca, 'on')
% calculate the two possible end points
% 1) line crosses upper axis limit. X = ?, Y = YL(2)
xEnd = (YL(2)-yint)/m;
% 2) line crosses rightward axis limit. X = XL(2), y = ?
yEnd = (m * XL(2)) + yint ;
% Now determine which end point to use (ie, which axis it crosses)
if xEnd <= XL(2)
% The line crosses the upper y axis border
yEnd = YL(2);
else
% The line crosses the rightward x axis border
xEnd = XL(2);
end
%Draw the line
plot([A, xEnd], [B, yEnd], 'b-', 'linewidth', 3)
%circle end point for confirmation
plot(xEnd, yEnd, 'mo', 'linewidth', 3)
  4 comentarios
Kamu
Kamu el 4 de Dic. de 2018
You are right, that's the solution. Thanks!
Adam Danz
Adam Danz el 4 de Dic. de 2018
Nice, glad it worked!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by