coordinate viewer

This commit is contained in:
lars 2025-08-10 17:13:06 +02:00
parent c45b902e8a
commit 5922550464

View File

@ -3,26 +3,26 @@ import mss
import cv2
import numpy as np
# while True:
# print(pyautogui.position())
monitor_area = {"top": 120, "left": 330, "width": 1900, "height": 1263}
sct = mss.mss()
while True:
# Screenshot aufnehmen
img = np.array(sct.grab(monitor_area))
img_bgr = cv2.cvtColor(img, cv2.COLOR_BGRA2BGR)
print(pyautogui.position())
# Anzeige
cv2.imshow("Monitor-Ausschnitt", img_bgr)
# Mit 'q' beenden
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cv2.destroyAllWindows()
# monitor_area = {"top": 120, "left": 330, "width": 1900, "height": 1263}
#
# sct = mss.mss()
#
# while True:
# # Screenshot aufnehmen
# img = np.array(sct.grab(monitor_area))
# img_bgr = cv2.cvtColor(img, cv2.COLOR_BGRA2BGR)
#
# # Anzeige
# cv2.imshow("Monitor-Ausschnitt", img_bgr)
#
# # Mit 'q' beenden
# if cv2.waitKey(1) & 0xFF == ord('q'):
# break
#
# cv2.destroyAllWindows()