How do I find the most complex convex polygon enclosing a set of points?

Posted by Marius on Stack Overflow See other posts from Stack Overflow or by Marius
Published on 2010-05-16T12:04:25Z Indexed on 2010/05/16 12:10 UTC
Read the original article Hit count: 215

Filed under:
|
|

I have a list of (about 200-300) 2d points. I know needs to find the polygon that encloses all of them. The polygon has to be convex, and it should be as complex as possible (i.e. not a rectangular bounding box). It should find this in as low as possible time, but there are no restrictions on memory.

You may answer in pseudocode or any language you want to use.

© Stack Overflow or respective owner

Related posts about algorithm

Related posts about polygon