亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python如何實現微信跳一跳游戲輔助

發布時間:2021-08-03 10:53:53 來源:億速云 閱讀:145 作者:小新 欄目:開發技術

小編給大家分享一下python如何實現微信跳一跳游戲輔助,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

具體內容如下

import os
import PIL
import numpy
import matplotlib

matplotlib.use('TKAgg')
import matplotlib.pyplot as plt
import time

from matplotlib.animation import FuncAnimation

# 是否需要進行圖片更新
need_update = True

def get_screen_image():
 # 截取手機當前圖片
 os.system('adb shell screencap -p /sdcard/screen.png')
 # 拉取到PC端
 os.system('adb pull /sdcard/screen.png')
 # 將圖像轉成數組返回
 return numpy.array(PIL.Image.open('screen.png'))


def jump_to_next(point1, point2):
 x1, y1 = point1;
 x2, y2 = point2
 distance = ((x2 - x1) ** 2 + (y2 - y1) ** 2) ** 0.5
 # 計算按壓指令和按壓時長
 os.system("adb shell input touchscreen swipe 320 410 320 410 %d" % (distance * 1.35))


def on_clack(event, coor=[]):
 global need_update
 coor.append((event.xdata, event.ydata))
 if len(coor) == 2:
 # 執行跳步指令
 jump_to_next(coor.pop(), coor.pop())
 # 進行圖片刷新
 need_update = True


def update_screen(frame):
 global need_update
 if need_update:
 time.sleep(2)
 axes_image.set_array(get_screen_image())
 # 已刷新,設置為false
 need_update = False
 return axes_image,


figure = plt.figure()
axes_image = plt.imshow(get_screen_image(), animated=True)
figure.canvas.mpl_connect('button_press_event', on_clack)
# 定時更新
ani = FuncAnimation(figure, update_screen, interval=50, blit=True)
plt.show()

python如何實現微信跳一跳游戲輔助

以上是“python如何實現微信跳一跳游戲輔助”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武川县| 桐庐县| 昂仁县| 吉木乃县| 贡觉县| 永济市| 将乐县| 广东省| 镇远县| 沙洋县| 万源市| 涟源市| 纳雍县| 平顶山市| 乌拉特中旗| 通辽市| 玉林市| 长乐市| 武安市| 金堂县| 家居| 泸溪县| 北辰区| 大丰市| 德钦县| 黎平县| 娄烦县| 龙口市| 海门市| 玉山县| 哈尔滨市| 临海市| 泰州市| 邳州市| 山东省| 沁阳市| 苍南县| 博野县| 青河县| 新津县| 乌拉特前旗|