def draw_convex_hull(self,im, points, color): ''' ?????? ''' points = cv2.convexHull(points) cv2.fillConvexPoly(im, points, color=color)