-
Notifications
You must be signed in to change notification settings - Fork 1
/
Finger_counter.py
60 lines (46 loc) · 1.45 KB
/
Finger_counter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import cv2
import time
import os
import FC_Hand_Tracking_Module as htm
cap=cv2.VideoCapture(0)
cap.set(3,640)
cap.set(4,480)
path="finger"
myList=os.listdir(path)
overlayList=[]
for impath in myList:
image=cv2.imread(f'{path}/{impath}')
overlayList.append(image)
pTime=0
detector=htm.handDetector(detectionCon=0)
tipIds=[4,8,12,16,20]
while True:
success,img=cap.read()
img=detector.findHands(img)
lmList=detector.findPosition(img,draw=False)
#print(lmList)
if len(lmList) !=0:
fingers=[]
# Thumb
if lmList[tipIds[0]][1] > lmList[tipIds[0] - 1][1]:
fingers.append(1)
else:
fingers.append(0)
for id in range(1,5): #y axis
if lmList[tipIds[id]][2] < lmList[tipIds[id]-2][2]:
fingers.append(1)
else:
fingers.append(0)
totalFingers=fingers.count(1)
print(totalFingers)
h,w,c=overlayList[totalFingers].shape
img[0:h,0:w]=overlayList[totalFingers]
cv2.rectangle(img,(0,275),(170,480),(255,0,0),cv2.FILLED)
cv2.putText(img,str(totalFingers),(40,430),cv2.FONT_HERSHEY_PLAIN,10,(0,255,0),25)
cTime=time.time()
fps=1/(cTime-pTime)
pTime=cTime
cv2.putText(img,f'FPS: {int(fps)}',(400,70),cv2.FONT_HERSHEY_PLAIN,3,(255,0,0),3)
cv2.imshow("Image",img)
if cv2.waitKey(1) & 0xFF == ord('q'):
break