加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
autojump.py 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
宝贝龙 提交于 2019-09-17 21:57 . sss
from PIL import Image
import imp
from isEndModel import predict as isEndPred
from alexnet import predict as pred
import time
from Jump import Jump
import os
#自动跳
def jump():
jump = Jump()
while 1:
time.sleep(1)
jump.pull_screenshot()
img = Image.open("./1.png")
#判断是否游戏结束
isEnd = isEndPred(img)
if isEnd:
print('isEnd')
#重新开始
os.system('adb shell input tap 650 1700')
else:
result = pred(img)
print(result[0][0])
jump.jump(jump.calc(result[0][0]))
if __name__ == "__main__":
jump()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化