Есть код:
Здесь код скриншотит определённую часть пикселей и после чего pytesseract сканирует слова на скрине и выводит их через /print().
Но ошибка выходит на 25 строчке, я так понимаю что код не может найти файл.
Вот ошибка: FileNotFoundError: [WinError 2] Не удаётся найти указанный файл
Python:
import cv2
import pyautogui
import time
import numpy as np
import os
import pyscreenshot as ImageGrab
import pytesseract
filename = "Image12345.png"
last_time = time.time()
x = 1
while True:
time.sleep(3)
screen = np.array(ImageGrab.grab(bbox = (382, 179, 985, 204)))
cv2.imshow("window", cv2.cvtColor(screen, cv2.COLOR_BGR2RGB))
cv2.imwrite(filename, screen)
x = x+1
print(x)
if x == 2:
cv2.destroyAllWindows()
break
img2 = cv2.imread("Image12345.png")
text = pytesseract.image_to_string(img2)
print(text)
Но ошибка выходит на 25 строчке, я так понимаю что код не может найти файл.
Вот ошибка: FileNotFoundError: [WinError 2] Не удаётся найти указанный файл