python微信跳一跳系列之自動(dòng)計(jì)算跳一跳距離
到現(xiàn)在為止,我們通過前面幾篇博文的描述和分析,已經(jīng)可以自動(dòng)實(shí)現(xiàn)棋子、棋盤位置的準(zhǔn)確判斷,計(jì)算一下兩個(gè)中心點(diǎn)之間的距離,并繪制在圖形上,效果如下。
效果

圖中的棋子定位采用HSV顏色識(shí)別,棋盤定位采用輪廓分割的方法獲得,感興趣的同學(xué)可以對(duì)其它的定位方法自行驗(yàn)證。
代碼
# -*- coding: utf-8 -*-
#VS2017+python3.6+opencv3.4
#2018.02.03
#作者:艾克思
import cv2
import numpy as np
import math
def hsv(frame):
lower_blue = np.array([115,75,75]) #設(shè)定藍(lán)色的閾值
upper_blue = np.array([130,255,125])
r=0 #初始半徑=0
x,y=0,0
hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV) #轉(zhuǎn)到HSV空間
mask_blue = cv2.inRange(hsv, lower_blue, upper_blue)
cnts = cv2.findContours(mask_blue, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)[-2]
if len(cnts) > 0:
c = max(cnts, key = cv2.contourArea) #找到面積最大的輪廓
((x, y), radius) = cv2.minEnclosingCircle(c) #確定面積最大的輪廓的外接圓
center=(int(x),int(y))
return center
def thresh(img):
x,y,w,h,x1,y1,w1,h1,x2,y2,w2,h2=0,0,0,0,0,0,0,0,0,0,0,0
gray= cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
#gray=cv2.GaussianBlur(gray,(13,13),0)#轉(zhuǎn)化為灰度圖
h0,w0=img.shape[:2]
top=gray[h0//3,1]
bottom= gray[h0*2//3,1]
#min_vale=min(top,bottom)
#max_vale=max(top,bottom)
thresh1 = cv2.threshold(gray,top,255, cv2.THRESH_BINARY)[1]
thresh2 = cv2.threshold(gray,175,255, cv2.THRESH_BINARY_INV)[1]
img1=thresh1[h0//3:h0*2//3,0:w0]
img2=thresh2[h0//3:h0*2//3,0:w0]
cnts1, hierarchy1, rr1 = cv2.findContours(img1,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)
cnts2, hierarchy2, rr2 = cv2.findContours(img2,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)
aim1=0
y_min=h0//3
for c in hierarchy1:
if hierarchy1==None:
x1,y1,w1,h1=w0//2,h0//3,w0//3,h0//3
break
else:
x,y,w,h = cv2.boundingRect(c)
if y<=y_min:
y_min=y
aim1=c
x1,y1,w1,h1 = cv2.boundingRect(aim1)
#cv2.rectangle(img,(x1,y1+h0//3),(x1+w1,y1+h1+h0//3),(0,0,255),2)
aim2=0
y_min=h0//3
for c in hierarchy2:
if hierarchy2==None:
x2,y2,w2,h2=w0//2,h0//3,w0//3,h0//3
break
else:
x,y,w,h = cv2.boundingRect(c)
if y<=y_min:
y_min=y
aim2=c
x2,y2,w2,h2 = cv2.boundingRect(aim2)
#cv2.rectangle(img,(x2,y2+h0//3),(x2+w2,y2+h2+h0//3),(0,255,255),2)
if y1+h1//2<=y2+h2//2:
x,y,w,h=x1,y1,w1,h1
else: x,y,w,h=x2,y2,w2,h2
cv2.imshow('img1',thresh1)
cv2.imshow('img2',thresh2)
return (x+w//2,y+h0//3+h//2)
def length(pt1,pt2):
x1,y1=pt1
x2,y2=pt2
length=math.sqrt((x2-x1)**2+(y2-y1)**2)
return int(length)
def main():
filepath='e:/python/jump/hsv/007.png'
video='e:/python/jump/blackwhite/jumpnew.avi'
cap = cv2.VideoCapture(video)
ret=cap.isOpened()
ret=True
while ret:
#ret,img=cap.read() #讀入幀
img=cv2.imread(filepath)
if not ret:cv2.waitKey(0)
point1=hsv(img)
point2=thresh(img)
len=length(point1,point2)
cv2.circle(img,point1,3,(0,0,255),-1)
cv2.circle(img,point1,15,(0,0,255),2)
cv2.circle(img,point2,3,(0,0,255),-1)
cv2.circle(img,point2,15,(0,0,255),2)
cv2.line(img,point1,point2,(255,255,255),2)
cv2.putText(img, '{}'.format(len) ,(point2[0]-10,point2[1]-20), cv2.FONT_HERSHEY_SIMPLEX, 0.6, (0, 0, 255), 2,cv2.LINE_8, 0)
cv2.imshow('img',img)
#cv2.imwrite(filepath,img)
cv2.waitKey(0)
cap.release()
cv2.destroyAllWindows()
if __name__=='__main__':
main()
更多內(nèi)容大家可以參考專題《微信跳一跳》進(jìn)行學(xué)習(xí)。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python內(nèi)置的字符串處理函數(shù)詳細(xì)整理(覆蓋日常所用)
Python內(nèi)置的字符串處理函數(shù)整理,有字母處理、格式化相關(guān)、字符串搜索相關(guān)、字符串替換相關(guān)等等2014-08-08
Python基于多線程實(shí)現(xiàn)抓取數(shù)據(jù)存入數(shù)據(jù)庫(kù)的方法
這篇文章主要介紹了Python基于多線程實(shí)現(xiàn)抓取數(shù)據(jù)存入數(shù)據(jù)庫(kù)的方法,結(jié)合實(shí)例形式分析了Python使用數(shù)據(jù)庫(kù)類與多線程類進(jìn)行數(shù)據(jù)抓取與寫入數(shù)據(jù)庫(kù)操作的具體使用技巧,需要的朋友可以參考下2018-06-06
解決windows下Sublime Text 2 運(yùn)行 PyQt 不顯示的方法分享
問題描述:PyQt 環(huán)境正常,可以使用 Windows 的 虛擬 DOS 正常運(yùn)行,但在 Sublime Text 2 下使用 Ctrl + B 運(yùn)行后,界面不顯示,但查看任務(wù)管理器,有 python.exe 進(jìn)程。2014-06-06
python實(shí)現(xiàn)問號(hào)表達(dá)式(?)的方法
這篇文章主要介紹了python實(shí)現(xiàn)問號(hào)(?)表達(dá)式的方法,大家參考使用吧2013-11-11
一條命令解決mac版本python IDLE不能輸入中文問題
本文通過一條命令幫助大家解決mac版本python IDLE無法輸入中文問題,需要的朋友可以參考下2018-05-05

