Tagged Questions

4
votes
3answers
2k views

Best Algorithm to find the edges (polygon) of vertices

I have a large array of vertices, some of them are edges, some are redundant (inside the shape) and I want to remove those. The simplest algorithm I could think of is checking one by one if they hit ...
2
votes
2answers
156 views

How to find Edges and Vertices of a hand drawn polygon

I would like to make a shape recognition program that would trace a mouse and record it's location at each 1/2 second. how could I use these points to find a rough polygon? In other words, if you just ...