一位女性朋友和我PK别踩白块儿,输了私藏照片给我,冠希哥用Python轻松赢下

Posted Python陈冠希

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一位女性朋友和我PK别踩白块儿,输了私藏照片给我,冠希哥用Python轻松赢下相关的知识,希望对你有一定的参考价值。

前言:前些天一位女性朋友和我打赌,说她游戏玩的很厉害,首先以为是王者,结果谁能想到是别踩白块,我后面跟她说PK赢了发照片给我!

视频奉上:

Python代码制作

完整代码:

#!/usr/local/bin/python3.7
import cv2
import numpy as np
from mss import mss
from collections import Counter
from pynput.mouse import Button, Controller
import time

mouse = Controller()

cords = {'top':140 , 'left': 2090 , 'width': 570, 'height': 540 }
A =time.time()
while time.time() - A < 61:
with mss() as sct :
img = np.array(sct.grab(cords)) #sct.grab(cords/monitor)
#
img[img==img[0,-1]] =0 # remove the boarder
img[img==img[0,0]] =0 # remove the boarder
img[img==img[10,10]] = 0 # first bin
Ra=6 # rsize to reduce the unnecessary calculates
# if the first bin is the target
if np.sum(img[520,10])> 0 and np.sum(img[520,500]) >0:
print("First bin")
#mouse.position = (2090+30, 140+30)
#mouse.press(Button.left)
#mouse.release(Button.left)
else:
Signal = "Run"
for i in range(int(540/Ra)-5):
i = i*Ra
for ii in range(int(570/Ra)-10):
ii = ii*Ra
if np.sum(img[i,ii])>0 and np.sum(img[i,ii] - img[i+3,ii+4])==0:
img[i:i+4,ii:ii+4] = 255
print(i,ii)
#mouse.position = (2090+ii+10, 140+i+10)
#mouse.press(Button.left)
#mouse.release(Button.left)
Signal = "Break"
break
if Signal == "Break":
break

cv2.imshow('image',img)
cv2.moveWindow("image",2800,0)
if cv2.waitKey(1) & 0xFF == ord('q'):
cv2.destroyAllWindows()
break

cv2.destroyAllWindows()

之后应该是大家最想要的照片了

 

以上是关于一位女性朋友和我PK别踩白块儿,输了私藏照片给我,冠希哥用Python轻松赢下的主要内容,如果未能解决你的问题,请参考以下文章

cocos2d-x制作别踩白块儿第一期:游戏介绍

用Canvas写一个简单的游戏--别踩白块儿

C语言简单小游戏项目:《别踩白块儿》

C语言项目:别踩白块游戏(双人版),450行源码分享+详细思路

C语言项目实战:《别踩白块游戏》零基础项目,137 行源代码示例

皮皮果游戏系统开发详解