Для удобства изменены названия скриншотов

This commit is contained in:
2023-03-10 03:14:12 +03:00
parent 825033ae23
commit 3ac1066fed

View File

@@ -1,3 +1,4 @@
import time
import logging import logging
import numpy as np import numpy as np
import pygetwindow as gw import pygetwindow as gw
@@ -52,10 +53,11 @@ def get_screenshot():
eve_window.activate() eve_window.activate()
if save_result: if save_result:
filepath = "images/screenshot.png" filepath = "images/0_screenshot.png"
else: else:
filepath = None filepath = None
time.sleep(0.5)
screenshot = pyautogui.screenshot( screenshot = pyautogui.screenshot(
filepath, filepath,
region=( region=(
@@ -87,7 +89,7 @@ def get_boxes(screenshot):
if save_result: if save_result:
save_highlighted_screenshot( save_highlighted_screenshot(
screenshot, base_boxes, "base_highlighted_screenshot" screenshot, base_boxes, "1_base_highlighted_screenshot"
) )
base_boxes.to_excel("xlsx/base_boxes.xlsx", index=False) base_boxes.to_excel("xlsx/base_boxes.xlsx", index=False)
@@ -127,5 +129,5 @@ base_boxes = get_boxes(screenshot)
unioned_boxes = union_boxes(base_boxes) unioned_boxes = union_boxes(base_boxes)
save_highlighted_screenshot( save_highlighted_screenshot(
screenshot, unioned_boxes, "unioned_highlighted_screenshot" screenshot, unioned_boxes, "2_unioned_highlighted_screenshot"
) )