ガチャマクロ
import pyautogui
import cv2
def kinsure(x):
pyautogui.screenshot('filename.png')
img = cv2.imread("filename.png", 0)
temp = cv2.imread(x, 0)
result = cv2.matchTemplate(img, temp, cv2.TM_CCOEFF_NORMED)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(result)
if max_val >= 0.95:
pyautogui.click(max_loc)
pyautogui.FAILSAFE = True
pyautogui.PAUSE = 2
while 1:
kinsure("test.png")
kinsure("画像の名前")でその画像の左上のマスを何秒かごとにクリックしてくれる
クリックしたいボタンのこんな感じのスクリーンショットを切り抜くといい
while文の中を書き換えて自分だけのマクロを作ろう!
Author And Source
この問題について(ガチャマクロ), 我々は、より多くの情報をここで見つけました https://qiita.com/gacchamacro/items/529c60d07ebd0fbd38b1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .