coordinate viewer
This commit is contained in:
parent
c45b902e8a
commit
5922550464
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user