opencv 정적 제스처 인식 opencv 가위바위보 게임 실현

본 논문 의 사례 는 opencv 가 정적 제스처 인식 을 실현 하 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
이 코드 를 실행 하려 면 설치 되 어 있 는 지 확인 하 십시오:python 2.7,opencv 2.4.9
효 과 는 다음 과 같 습 니 다:







알고리즘 은 다음 과 같 습 니 다.
그림 을 먼저 처리 하고 처리 과정:
     1.팽창 이미지 와 부식 이미 지 를 상쇄 하 는 방법 으로 윤곽 을 얻는다.
     2.이치 화로 그림 가 져 오기
     3.반 색
위의 처 리 를 거 친 후 그림 은:

그 후에 간단 해 졌 습 니 다.세 가지 이미 지 를 구분 하 는 방법 을 설계 하면 됩 니 다.
코드 는 다음 과 같 습 니 다:

# -*- coding: cp936 -*-
import cv2
import numpy
import time
import random
import os
def judge( ):
 #    3×3     
 # return 0 stone ,1 jiandao, 2 bu
 img = cv2.imread("wif.jpg",0)
 element = cv2.getStructuringElement(cv2.MORPH_RECT,(11,11))
 dilate = cv2.dilate(img, element)
 erode = cv2.erode(img, element)
 #          ,            ,            
 result = cv2.absdiff(dilate,erode);
 #           ,               
 retval, result = cv2.threshold(result, 40, 255, cv2.THRESH_BINARY);
 
 #  ,           
 result = cv2.bitwise_not(result);
 result =cv2.medianBlur(result,23)
 a=[]
 posi =[]
 width =[]
 count = 0
 area = 0 
 for i in range(result.shape[1]):
 for j in range(result.shape[0]):
  if(result[j][i]==0):
  area+=1
 for i in range(result.shape[1]):
 if(result[5*result.shape[0]/16][i]==0 and result[5*result.shape[0]/16][i-1]!=0 ):
  count+=1
  width.append(0)
  posi.append(i)
 if(result[5*result.shape[0]/16][i]==0):
  width[count-1]+=1
 """
 print 'the pic width is ',result.shape[1],'
' for i in range(count): print 'the ',i,'th',' ','is'; print 'width ',width[i] print 'posi ',posi[i],'
' print count,'
' print 'area is ',area,'
' cv2.line(result,(0,5*result.shape[0]/16),(214,5*result.shape[0]/16),(0,0,0)) cv2.namedWindow("fcuk") cv2.imshow("fcuk",result) cv2.waitKey(0) """ # width_length=0 width_jiandao = True for i in range(count): if width[i]>45: #print 'bu1'; return 2; if width[i]<=20 or width[i]>=40: width_jiandao= False width_length += width[i] if width_jiandao==True and count==2: return 1; if(area <8500): #print 'shi tou'; return 0; print "width_leng",width_length if(width_length<35): # , 。 a=[] posi =[] width =[] count = 0 for i in range(result.shape[1]): if(result[11*result.shape[0]/16][i]==0 and result[11*result.shape[0]/16][i-1]!=0 ): count+=1 width.append(0) posi.append(i) if(result[11*result.shape[0]/16][i]==0): width[count-1]+=1 """ print 'the pic width is ',result.shape[1],'
' for i in range(count): print 'the ',i,'th',' ','is'; print 'width ',width[i] print 'posi ',posi[i],'
' print count,'
' print 'area is ',area,'
' """ width_length=0 width_jiandao = True for i in range(count): if width[i]>45: #print 'bu1'; return 2; if width[i]<=20 or width[i]>=40: width_jiandao= False width_length += width[i] if width_jiandao==True and count==2: return 1; if(area>14000 or count>=3): #print 'bu2'; return 2; if(width_length<110): #print 'jian dao'; return 1; else: #print 'bu3'; return 2; """ print(" , y
") s = raw_input() capture = cv2.VideoCapture(0) cv2.namedWindow("camera",1) start_time = time.time() print(" 5
") while(s=='y' or s=='Y'): ha,img =capture.read() end_time = time.time() cv2.rectangle(img,(426,0),(640,250),(170,170,0)) cv2.putText(img,str(int((5-(end_time- start_time)))), (100,100), cv2.FONT_HERSHEY_SIMPLEX, 2, 255) cv2.imshow("camera",img) if(end_time-start_time>5): break if(cv2.waitKey(30)>=0): break ha,img = capture.read() capture.release() cv2.imshow("camera",img) img = img[0:210,426:640] cv2.imwrite("wif.jpg",img) judge() cv2.waitKey(0) print "fuck" """ def game(): fuck =[] fuck.append(" ") fuck.append(" ") fuck.append(" ") capture = cv2.VideoCapture(0) cv2.namedWindow("camera",1) start_time = time.time() print(" 5
") while(1): ha,img =capture.read() end_time = time.time() cv2.rectangle(img,(426,0),(640,250),(170,170,0)) cv2.putText(img,str(int((5-(end_time- start_time)))), (100,100), cv2.FONT_HERSHEY_SIMPLEX, 2, 255) cv2.imshow("camera",img) if(end_time-start_time>5): break if(cv2.waitKey(30)>=0): break ha,img = capture.read() capture.release() cv2.imshow("camera",img) img = img[0:210,426:640] cv2.imwrite("wif.jpg",img) p1 = judge() pc = random.randint(0,2) #print p1,' ',pc,'
' print " ",fuck[p1]," ",fuck[pc],"
" cv2.destroyAllWindows() if(p1==pc): print "
" return 0 if((p1==0 and pc ==1)or(p1==1 and pc ==2)or(p1==2 and pc ==0)): print '
' return 1 else: print '
' return -1 def main(): you_win=0 pc_win=0 print(" ,
") s = raw_input() while(1): print " ( : ) ",you_win,":",pc_win,'
' s = raw_input() os.system('cls') ans =game() if(ans == 1): you_win+=1 elif(ans == -1): pc_win+=1 print " , " main()
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기