-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTesseract.py
40 lines (34 loc) · 1.5 KB
/
Tesseract.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
# .------.------.------.------.------.------.------.------.------.------.
# |D.--. |4.--. |N.--. |1.--. |3.--. |L.--. |3.--. |K.--. |0.--. |0.--. |
# | :/\: | :/\: | :(): | :/\: | :(): | :/\: | :(): | :/\: | :/\: | :/\: |
# | (__) | :\/: | ()() | (__) | ()() | (__) | ()() | :\/: | :\/: | :\/: |
# | '--'D| '--'4| '--'N| '--'1| '--'3| '--'L| '--'3| '--'K| '--'0| '--'0|
# `------`------`------`------`------`------`------`------`------`------'
#
# Copyright 2023 t.me/D4n13l3k00
# Licensed under the Creative Commons CC BY-NC-ND 4.0
#
# Full license text can be found at:
# https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode
#
# Human-friendly one:
# https://creativecommons.org/licenses/by-nc-nd/4.0
# meta developer: @D4n13l3k00
import os
from .. import loader # type: ignore
@loader.tds
class TesseractMod(loader.Module):
strings = {"name": "Tesseract"}
@loader.owner
async def ocrcmd(self, m):
"Распознать текст с картинки"
reply = await m.get_reply_message()
if not reply:
return await m.edit("[OCR] Реплай на пикчу")
await m.edit("[OCR] Распознаём")
file = await reply.download_media()
rec = os.popen(f"tesseract -l rus+eng {file} stdout").read()
await m.edit(
"[OCR]\n" + (("<code>" + rec + "</code>") if rec != "" else "НЕ_РАСПОЗНАНО")
)
os.remove(file)