-
Notifications
You must be signed in to change notification settings - Fork 0
/
trail.py
181 lines (158 loc) · 5.62 KB
/
trail.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import cv2
import time
import os
import HandTrackingModule as htm
import pyautogui as p
p.FAILSAFE=False
print("#####################Welcome to Hand Gesture controlled pc#####################")
appMode={2:'Microsoft excel',3:'Microsoft word',5:'VLC Media player',4:'Chrome',1:'Microsoft Power point'}
print(appMode)
choice=int(input("Enter the presentation application: "))
wCam, hCam = 1080, 720
#cap = cv2.VideoCapture("http://192.168.43.220:9000/stream.mjpg")
#cap = cv2.VideoCapture("http://192.168.43.1:6677/videofeed?username=CCJDMAFKB&password=")
#cap=cv2.VideoCapture(0)
#l="http://192.168.43.1:6677/videofeed?username=CCJDMAFKB&password="
cap = cv2.VideoCapture(0)
cap.set(3, wCam)
cap.set(4, hCam)
folderPath = "FigerImages"
myList = os.listdir(folderPath)
print(myList)
overlayList = []
for imPath in myList:
image = cv2.imread(f'{folderPath}/{imPath}')
# print(f'{folderPath}/{imPath}')
overlayList.append(image)
print(len(overlayList))
pTime = 0
detector = htm.handDetector(detectionCon=0.75)
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)
# 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)
print(totalFingers)
if appMode[choice]=='Microsoft Power point':
if(totalFingers==0):
time.sleep(1)
p.hotkey('f5')
if(totalFingers==1):
time.sleep(1)
#p.hotkey('ctrl', 't')
p.press('left')
if(totalFingers==2):
time.sleep(1)
#p.hotkey('ctrl', 'n')
p.press('right')
if(totalFingers==3):
time.sleep(1)
#p.hotkey('ctrl', 'w')
p.press('esc')
if(totalFingers==4):
time.sleep(1)
p.hotkey('fn','alt','f4')
elif appMode[choice]=='Microsoft excel':
if(totalFingers==0):
time.sleep(1)
p.hotkey('fn','alt','f4')
if(totalFingers==1):
time.sleep(1)
#p.hotkey('ctrl', 't')
p.press('left')
if(totalFingers==2):
time.sleep(1)
#p.hotkey('ctrl', 'n')
p.press('right')
if(totalFingers==3):
time.sleep(1)
#p.hotkey('ctrl', 'w')
p.press('up')
if(totalFingers==4):
time.sleep(1)
p.press('down')
elif appMode[choice]=='Microsoft word':
if(totalFingers==0):
time.sleep(1)
p.hotkey('fn','alt','f4')
if(totalFingers==1):
time.sleep(1)
#p.hotkey('ctrl', 't')
p.press('left')
if(totalFingers==2):
time.sleep(1)
#p.hotkey('ctrl', 'n')
p.press('right')
if(totalFingers==3):
time.sleep(1)
#p.hotkey('ctrl', 'w')
p.press('up')
if(totalFingers==4):
time.sleep(1)
p.press('down')
elif appMode[choice]=='Chrome':
if(totalFingers==0):
time.sleep(1)
p.hotkey('fn','alt','f4')
if(totalFingers==1):
time.sleep(1)
#p.hotkey('ctrl', 't')
p.hotkey('ctrl','tab')
if(totalFingers==2):
time.sleep(1)
#p.hotkey('ctrl', 'n')
p.hotkey('ctrl','t')
if(totalFingers==3):
time.sleep(1)
#p.hotkey('ctrl', 'w')
p.hotkey('up')
if(totalFingers==4):
time.sleep(1)
p.hotkey('down')
elif appMode[choice]=='VLC Media player':
if(totalFingers==0):
time.sleep(1)
p.hotkey('space')
if(totalFingers==1):
#p.hotkey('ctrl', 't')
time.sleep(1)
p.press('left')
if(totalFingers==2):
#p.hotkey('ctrl', 'n')
time.sleep(1)
p.press('right')
if(totalFingers==3):
time.sleep(1)
#p.hotkey('ctrl', 'w')
p.press('up')
if(totalFingers==4):
time.sleep(1)
p.press('down')
h, w, c = overlayList[totalFingers - 1].shape
img[0:h, 0:w] = overlayList[totalFingers - 1]
cv2.rectangle(img, (20, 225), (170, 425), (0, 255, 0), cv2.FILLED)
cv2.putText(img, str(totalFingers), (45, 375), cv2.FONT_HERSHEY_PLAIN,
10, (255, 0, 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)
cv2.waitKey(1)