forked from ter-s/Beijing_Daxuexi_Simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.py
59 lines (48 loc) · 2.13 KB
/
utility.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
from base64 import b64encode
from io import BytesIO
from Crypto.Cipher import PKCS1_v1_5 as Cipher_pksc1_v1_5
from Crypto.PublicKey import RSA
from PIL import Image
from ddddocr import DdddOcr
def encrypt(t):
public_key = "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD5uIDebA2qU746e/NVPiQSBA0Q3J8/G23zfrwMz4qoip1vuKaVZykuMtsAkCJFZhEcmuaOVl8nAor7cz/KZe8ZCNInbXp2kUQNjJiOPwEhkGiVvxvU5V5vCK4mzGZhhawF5cI/pw2GJDSKbXK05YHXVtOAmg17zB1iJf+ie28TbwIDAQAB\n-----END PUBLIC KEY-----"
rsa_key = RSA.importKey(public_key)
cipher = Cipher_pksc1_v1_5.new(rsa_key)
cipher_text = b64encode(cipher.encrypt(t.encode()))
return cipher_text.decode()
ocr = DdddOcr()
def cap_recognize(cap):
return ocr.classification(denoise(cap))
def denoise(cap):
img = Image.open(BytesIO(cap))
_STEPS_LAYER_1 = ((1, 1), (1, 0), (1, -1), (0, 1), (0, -1), (-1, 1), (-1, 0), (-1, -1))
STEPS8 = _STEPS_LAYER_1
_PX_WHITE = (250, 250, 250)
def _denoise(img, steps, threshold, repeat):
for _ in range(repeat):
for j in range(img.width):
for i in range(img.height):
px = img.getpixel((j, i))
if px == _PX_WHITE: # 自身白
continue
count = 0
if px[0] < px[1] + px[2]:
count = 2
for x, y in steps:
j2 = j + y
i2 = i + x
if 0 <= j2 < img.width and 0 <= i2 < img.height: # 边界内
if img.getpixel((j2, i2)) == _PX_WHITE: # 周围白
count += 1
else: # 边界外全部视为黑
count += 1
if count >= threshold:
img.putpixel((j, i), _PX_WHITE)
return img
def denoise8(img, steps=STEPS8, threshold=7, repeat=2):
""" 考虑外一周的降噪 """
return _denoise(img, steps, threshold, repeat)
buf = BytesIO()
denoise8(img).save(buf, format='PNG')
byte_im = buf.getvalue()
return byte_im