find the smallest containing convex polygon with a given number of points
问题 given a convex polgyon and a number N, how do I find the smallest polygon that contains every point from the original polygon has exactly N corner points For example, suppose I have a set of points and compute the convex hull for them (green). Now I want to find the smallest quadrangle that contains all the points (red) It is easy to see that any other polygon with 4 corners would either be bigger or fail to contain all the points. But how do I find this polygon in the general case? EDIT: