Tagged Questions
The line-segment tag has no wiki summary.
6
votes
1answer
112 views
Identify all co-linear line segments (in matlab)
I have posted a related but not the same question here Measuring length of DNA fibers from an image of single molecules
Background:
I have many images that look like this:
I would like to identify ...
3
votes
1answer
201 views
How do I break a non-straight line into even segments?
I have a non-straight line defined by a series of x, y coordinate points. I could draw a straight line on-screen directly between these points with no problem. Unfortunately, I have to draw the line ...
2
votes
2answers
153 views
Bentley-Ottmann Algorithm Implementation
Is there any existing Bentley-Ottmann Algorithm Implementation/library in C# or Java?
2
votes
1answer
358 views
calculate intersection between two segments in a symmetric way
When using the usual formulas to calculate intersection between two 2D segments, ie here, if you round the result to an integer, you get non-symmetric results.
That is, sometimes, due to rounding ...
2
votes
5answers
2k views
Line Segment container for fast Ray intersection? (2D)
I have a ray, I need to find the closest line segment that it hits. I think it's possible to do this in O(log n) time if I sort the line segments first, but I can't remember how to sort them... I ...
1
vote
1answer
149 views
Very general question about the implementation of vectors, vertices, edges, rays, lines & line segments
This is just a LARGE generalized question regarding rays (and/or line segments or edges etc) and their place in a software rendered 3d engine that is/not performing raytracing operations. I'm learning ...
1
vote
3answers
1k views
Algorithm to Find Overlapping Line Segments
n4------------------n3--------------------n2--n1
| | | |
| | | P1 |
| | | |
| ...
0
votes
1answer
108 views
Using PathIterator to return all line segments that constrain an Area?
In Java, how would one employ PathIterator to iterate through the line segments that constrain an Area? The Area is bound only by lines (but curve support wouldn't hurt).
The method should return a ...
0
votes
3answers
237 views
Trying to find an algorithm to detect rectangles in images
At the moment I have detected edges in an image and I am planning to extract line segments from the edges using a hough transform. Once I have the segments I am planning on finding corners where two ...
0
votes
1answer
119 views
Trouble with VB.NET Liang-Barsky implementation
After some research, I've decided to use the Liang-Barsky line clipping algorithm in my 2D game. Google did not deliver on any VB.NET implementations of this algorithm but plenty C/++ ones. Therefore, ...
0
votes
3answers
503 views
Merging multiple line segments
My program uses PyOpenGL (so it's Python) with psyco.
I have around 21,000 line segments which I need to render in each frame of my render (unless the user zooms in, in which case line segments are ...