-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
101 lines (90 loc) · 3.58 KB
/
main.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
import cv2
import mediapipe as mp
import time
from directkeys import right_pressed,left_pressed
from directkeys import PressKey, ReleaseKey
break_key_pressed=left_pressed
accelerato_key_pressed=right_pressed
time.sleep(2.0)
current_key_pressed = set()
mp_draw=mp.solutions.drawing_utils
mp_hand=mp.solutions.hands
tipIds=[4,8,12,16,20]
video=cv2.VideoCapture(0)
with mp_hand.Hands(min_detection_confidence=0.5,
min_tracking_confidence=0.5) as hands:
while True:
keyPressed = False
break_pressed=False
accelerator_pressed=False
key_count=0
key_pressed=0
ret,image=video.read()
image=cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
image.flags.writeable=False
results=hands.process(image)
image.flags.writeable=True
image=cv2.cvtColor(image, cv2.COLOR_RGB2BGR)
lmList=[]
if results.multi_hand_landmarks:
for hand_landmark in results.multi_hand_landmarks:
myHands=results.multi_hand_landmarks[0]
for id, lm in enumerate(myHands.landmark):
h,w,c=image.shape
cx,cy= int(lm.x*w), int(lm.y*h)
lmList.append([id,cx,cy])
mp_draw.draw_landmarks(image, hand_landmark, mp_hand.HAND_CONNECTIONS)
fingers=[]
if len(lmList)!=0:
if lmList[tipIds[0]][1] > lmList[tipIds[0]-1][1]:
fingers.append(1)
else:
fingers.append(0)
for id in range(1,5):
if lmList[tipIds[id]][2] < lmList[tipIds[id]-2][2]:
fingers.append(1)
else:
fingers.append(0)
total=fingers.count(1)
if total==0:
#cv2.rectangle(image, (20, 300), (270, 425), (0, 0, 255), cv2.FILLED)
cv2.putText(image, "BRAKE", (45, 375), cv2.FONT_HERSHEY_SIMPLEX,
2, (0, 0, 255), 5)
PressKey(break_key_pressed)
break_pressed=True
current_key_pressed.add(break_key_pressed)
key_pressed=break_key_pressed
keyPressed = True
key_count=key_count+1
elif total==5:
#cv2.rectangle(image, (20, 300), (270, 425), (0, 255, 0), cv2.FILLED)
cv2.putText(image, " GAS", (45, 375), cv2.FONT_HERSHEY_SIMPLEX,
2, (0, 255, 0), 5)
PressKey(accelerato_key_pressed)
key_pressed=accelerato_key_pressed
accelerator_pressed=True
keyPressed = True
current_key_pressed.add(accelerato_key_pressed)
key_count=key_count+1
if not keyPressed and len(current_key_pressed) != 0:
for key in current_key_pressed:
ReleaseKey(key)
current_key_pressed = set()
elif key_count==1 and len(current_key_pressed)==2:
for key in current_key_pressed:
if key_pressed!=key:
ReleaseKey(key)
current_key_pressed = set()
for key in current_key_pressed:
ReleaseKey(key)
current_key_pressed = set()
# if lmList[8][2] < lmList[6][2]:
# print("Open")
# else:
# print("Close")
cv2.imshow("Automation Gestures",image)
k=cv2.waitKey(1)
if k==ord('q'):
break
video.release()
cv2.destroyAllWindows()