-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrop.py
74 lines (58 loc) · 2.49 KB
/
crop.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import cv2
import os
import argparse
from imutils import paths
def crop_text(captcha):
text = captcha[0:28, 116:]
gray = cv2.cvtColor(text, cv2.COLOR_BGR2GRAY)
(T, thresh) = cv2.threshold(gray, 0, 255, cv2.THRESH_BINARY_INV + cv2.THRESH_OTSU)
(x, y, w, h) = cv2.boundingRect(thresh)
padding = 1
tl = (x - padding, y - padding)
br = (x + w + padding, y + h + padding)
roi = text[tl[1]:br[1], tl[0]:br[0]]
return roi
def crop_image(captcha):
x_offset = 5
y_offset = 41
x_margin = 5
y_margin = 5
img_width = img_height = 67
images = list()
for i in range(8):
row, col = divmod(i, 4)
top = y_offset + (img_height + y_margin) * row
left = x_offset + (img_width + x_margin) * col
bottom = top + img_height
right = left + img_width
images.append(captcha[top:bottom, left:right])
return images
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='crop captcha to text and image part')
parser.add_argument('-c', '--captcha', type=str, required=True, help='captcha directory')
parser.add_argument('-t', '--text', type=str, required=True, help='target directory to save text part')
parser.add_argument('-i', '--image', type=str, required=True, help='target directory to save image part')
args = vars(parser.parse_args())
os.makedirs(args['text'], exist_ok=True)
os.makedirs(args['image'], exist_ok=True)
captcha_paths = list(paths.list_images(args["captcha"]))
for captcha_path in captcha_paths:
captcha_name = os.path.basename(captcha_path)
(serial, ext) = os.path.splitext(captcha_name)
captcha = cv2.imread(captcha_path)
text = crop_text(captcha)
text_path = os.path.join(args["text"], captcha_name)
if os.path.exists(text_path):
print("already saved captcha %s text part." % captcha_name)
else:
cv2.imwrite(text_path, text)
print("save captcha %s text part to %s." % (captcha_name, text_path))
images = crop_image(captcha)
for i, img in enumerate(images):
img_name = '{}_{}{}'.format(serial, str(i), ext)
img_path = os.path.join(args["image"], img_name)
if os.path.exists(img_path):
print("already saved captcha %s image part %d." % (captcha_name, i))
else:
cv2.imwrite(img_path, img)
print("save captcha %s image part %d to %s." % (captcha_name, i, img_path))