我有这些验证码,想知道将部分放在矩形边框内的最佳方法是什么。我试过了,我的代码每 4 个验证码中可能只有 1 个。请帮忙,我已经坚持了一段时间了。
img = cv2.imread('captcha3.png')
cropB = cv2.medianBlur(img, 3)
gray = cv2.cvtColor(cropB, cv2.COLOR_BGR2GRAY)
white_bg = 255*np.ones_like(img)
ret, thresh = cv2.threshold(gray, 190, 60, 0)
im2, contours, hierarchy = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
for contour in contours:
approx = cv2.approxPolyDP(contour, 0.01 * cv2.arcLength(contour, True), True)
(x, y, w, h) = cv2.boundingRect(contour)
roi = img[y:y + h, x:x + w]
print(str(w) + " " + str(h))
if w > 50 and w < 150:
cv2.rectangle(img, (x, y), (x + w, y + h), (0, 255, 0), 2)
white_bg[y:y + h, x:x + w] = roi
plt.figure("Captcha")
plt.imshow(imutils.opencv2matplotlib(white_bg))
plt.show()
补充一点,有时它出于某种原因决定使矩形小于矩形边框本身。当字母重叠时,就像 75% 一样。