forked from raynertjx/jutsuclip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FingerCounter.py
73 lines (58 loc) · 2.27 KB
/
FingerCounter.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
61
62
63
64
65
66
67
68
69
70
71
72
73
import cv2
import HandTrackingModule as htm
import pyperclip
import os
import time
current, previous = "", ""
def finger_tracker(stored_values):
def capture_video():
global current
global previous
wCam, hCam = 640, 480
cap = cv2.VideoCapture(0)
cap.set(3, wCam)
cap.set(4, hCam)
detector = htm.handDetector(detectionCon=0.75)
tipIds = [4, 8, 12, 16, 20]
startTime = None
while True:
success, img = cap.read()
img = detector.findHands(img)
lmList = detector.findPosition(img, draw=False)
# print(lmList)
handType = detector.findHandType(img)
if len(lmList) != 0:
fingers = []
if handType == "Right":
if lmList[tipIds[0]][1] < lmList[tipIds[0] - 1][1]:
fingers.append(1)
else:
fingers.append(0)
elif handType == "Left":
if lmList[tipIds[0]][1] > lmList[tipIds[0] - 1][1]:
fingers.append(1)
else:
fingers.append(0)
# 4 Fingers
for id in range(1, 5):
if lmList[tipIds[id]][2] < lmList[tipIds[id] - 2][2]:
fingers.append(1)
else:
fingers.append(0)
# print(fingers)
totalFingers = fingers.count(1)
stored_value = stored_values[totalFingers]
if current != stored_value:
if startTime is None:
startTime = time.time() # Start the timer
elif time.time() - startTime >= 1: # Check if 2 seconds have passed
previous = current
current = stored_value
os.system(f"osascript -e 'display notification \"Current Copy: {current}\"'")
pyperclip.copy(stored_value)
print(stored_value)
else:
startTime = None # Reset the timer if the gesture is the same
cv2.imshow("Image", img)
cv2.waitKey(1)
return capture_video