- cv2.fillConvexPoly
- cv2.fillPoly
- skimage.morphology.convex_hull_object
contours, _ = cv2.findContours(mask.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)[-2:]
canv1 = np.zeros(mask.shape).astype(np.uint8)
cv2.drawContours(canv1, contours, -1, 1, -1)