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()
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ip camera android에 액세스하고 java를 사용하여 모니터에 표시그런 다음 PC에서 다운로드 폴더를 추출해야 합니다 그런 다음 프로젝트 폴더에 다운로드한 javacv 라이브러리를 추가해야 합니다. 먼저 라이브러리 폴더를 마우스 오른쪽 버튼으로 클릭한 다음 jar/폴더 추가를 선택...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.