Extract Characters using convex Hull coordinates - opencv - python
问题 I have character images like this: Using following code I could get contours and convex hull, then I could draw convex for each character. import cv2 img = cv2.imread('test.png', -1) ret, threshed_img = cv2.threshold(cv2.cvtColor(img, cv2.COLOR_BGR2GRAY), 127, 255, cv2.THRESH_BINARY) image, contours, hier = cv2.findContours(threshed_img, cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_NONE) for cnt in contours: # get convex hull hull = cv2.convexHull(cnt) cv2.drawContours(img, [hull], -1, (0, 0, 255), 1)