-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVirtualMouse.py
More file actions
72 lines (63 loc) · 2.51 KB
/
VirtualMouse.py
File metadata and controls
72 lines (63 loc) · 2.51 KB
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
import cv2
import numpy as np
import time
import pyautogui
import autopy
import HandTrackingModule as htm
import ScreenShot
wCam, hCam = 640, 480
frameR = 50
smoothening = 9
pTime = 0
plocX, plocY = 0, 0
clocX, clocY = 0, 0
flag=0
cap = cv2.VideoCapture(0)
cap.set(3, wCam)
cap.set(4, hCam)
detector = htm.handDetector(maxHands=1, detectionCon=0.5)
wScr, hScr = autopy.screen.size()
while True:
success, img = cap.read()
img = detector.findHands(img)
lmList, bbox = detector.findPosition(img)
cv2.circle(img, (640,240), radius=5, color=(0, 0, 255), thickness=-1)
cv2.circle(img, (0,240), radius=5, color=(0, 0, 255), thickness=-1)
if len(lmList) != 0:
x1, y1 = lmList[8][1:]
x2, y2 = lmList[12][1:]
fingers = detector.fingersUp()
cv2.rectangle(img, (frameR, frameR), (wCam - frameR, hCam - frameR),(255, 0, 255), 2)
if fingers.count(1) == 5:
lengthLeft, img, lineInfoLeft = detector.findDistanceTabSwitch(9, img, 'Left')
lengthRight, img, lineInfoRight = detector.findDistanceTabSwitch(9, img, 'Right')
if lengthLeft <150 or lengthRight<150:
pyautogui.keyDown('alt')
time.sleep(.2)
pyautogui.press('tab')
time.sleep(.5)
elif fingers.count(1) == 0:
pyautogui.keyUp('alt')
if fingers[1] == 1 and fingers[2] == 0 and fingers.count(1) == 1:
x3 = np.interp(x1, (frameR, wCam-frameR), (0, wScr))
y3 = np.interp(y1, (frameR, hCam-frameR), (0, hScr))
clocX = plocX + (x3 - plocX) / smoothening
clocY = plocY + (y3 - plocY) / smoothening
autopy.mouse.move(wScr - clocX, clocY)
cv2.circle(img, (x1, y1), 15, (255, 0, 255), cv2.FILLED)
plocX, plocY = clocX, clocY
elif fingers[1] == 1 and fingers[2] == 1 and fingers.count(1) == 2:
length, img, lineInfo = detector.findDistance(8, 12, img)
if length < 40:
cv2.circle(img, (lineInfo[4], lineInfo[5]), 15, (0, 255, 0), cv2.FILLED)
autopy.mouse.click()
time.sleep(.2)
# elif fingers[1] == 1 and fingers[0] == 1 and fingers.count(1) ==2:
# length, img, lineInfo = detector.findDistance(8, 4, img)
# if length <40:
# ScreenShot.takeScreenShot('./ScreenShots/')
cv2.imshow("Image", img)
if cv2.waitKey(1) == ord('q'):
break
cv2.destroyAllWindows()
cap.release()