How can I check if 2 segments intersect?
I've the following data:
Segment1 [ {x1,y1}, {x2,y2} ]
Segment2 [ {x1,y1}, {x2,y2} ]
I need to write a small algorithm in python to detect if the 2 lines are intersecting.
Update:
feedback
|
|
The formula for a line is:
For a segment, it is exactly the same, except that x is included into an interval I. If you have two segments, defined as follow:
The abcisse Xa of the potential point of intersection (Xa,Ya) must be contained in both interval I1 and I2, defined as follow :
And we could say that Xa is included into :
Now, you need to check that this interval Ia exists :
So, you got two line formula, and a mutual interval. Your line formulas are:
As we got two points by segment, we are able to determine A1, A2, b1 and b2:
If the segments are parallel, then A1 == A2 :
A point (Xa,Ya) standing on both line must verify both formulas f1 and f2:
The last thing to do is check that Xa is included into Ia:
In addition to this, you may check at startup that two of the four provided points are not equals to avoid all that testing. | |||||||||||
feedback
|
|
You don't have to compute exactly where does the segments intersect, but only understand whether they intersect at all. This will simplify the solution. The idea is to treat one segment as the "anchor" and separate the second segment into 2 points. Implementing such method will be much easier than actually implementing a method that finds the intersection point (given the many corner cases which you will have to handle as well). Update The following functions should illustrate the idea (source: Computational Geometry in C).
Of course, when using these function, one must remember to check that each segment lays "between" the other segment (since these are finite segments, and not infinite lines). Also, using these function you can understand whether you've got a proper or improper intersection.
| |||||||||
feedback
|
|
Suppose the two segments have endpoints A,B and C,D. The numerically robust way to determine intersection is to check the sign of the four determinants:
For intersection, each determinant on the left must have the opposite sign of the one to the right, but there need not be any relationship between the two lines. You are basically checking each point of a segment against the other segment to make sure they lie on opposite sides of the line defined by the other segment. See here: http://www.cs.cmu.edu/~quake/robust.html | |||
|
feedback
|
|
I found this post from Bryce Boe that works really great, and is quick. | |||
|
feedback
|
|
You have two line segments. Define one segment by endpoints A & B and the second segment by endpoints C & D. There is a nice trick to show that they must intersect, WITHIN the bounds of the segments. (Note that the lines themselves may intersect beyond the bounds of the segments, so you must be careful. Good code will also watch for parallel lines.) The trick is to test that points A and B must line on opposite sides of line CD, AND that points C and D must lie on opposite sides of line AB. Since this is homework, I won't give you an explicit solution. But a simple test to see which side of a line a point falls on, is to use a dot product. Thus, for a given line CD, compute the normal vector to that line (I'll call it N_C.) Now, simply test the signs of these two results:
and
If those results have opposite signs, then A and B are opposite sides of line CD. Now do the same test for the other line, AB. It has normal vector N_A. Compare the signs of
and
I'll leave it to you to figure out how to compute a normal vector. (In 2-d, that is trivial, but will your code worry about whether A and B are distinct points? Likewise, are C and D distinct?) You still need to worry about line segments that lie along the same infinite line, or if one point actually falls on the other line segment itself. Good code will cater to every possible problem. | |||
|
feedback
|
|
if your data define line you just have to prove that they are not parallel. To do this you can compute
If this coefficient is equal for both Line1 and Line2, it means the line are parallel. If not, it means they will intersect. If they are parallel you then have to prove that they are not the same. For that, you compute
If beta is the same for Line1 and Line2,it means you line intersect as they are equal If they are segment, you still have to compute alpha and beta as described above for each Line. Then you have to check that (beta1 - beta2) / (alpha1 - alpha2) is greater than Min(x1_line1, x2_line1) and less than Max(x1_line1, x2_line1) | ||||
feedback
|
|
Calculate the intersection point of the lines laying on your segments (it means basically to solve a linear equation system), then check whether is it between the starting and ending points of your segments. | |||
|
feedback
|
|
This is what I've got for AS3, don't know much about python but the concept is there
| |||
|
feedback
|
|
for segments AB and CD, find the slope of CD slope=(Dy-Cy)/(Dx-Cx) extend CD over A and B, and take the distance to CD going straight up dist1=slope*(Cx-Ax)+Ay-Cy dist2=slope*(Dx-Ax)+Ay-Dy check if they are on opposite sides return dist1*dist2<0 | |||
|
feedback
|
|
User @i_4_got points to this page with a very efficent solution in Python. I reproduce it here for convenience (since it would have made me happy to have it here):
| |||
|
feedback
|
|
Resolved but still why not with python... :)
| |||
|
feedback
|