-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
brightness_controllor.py
90 lines (72 loc) · 2.7 KB
/
brightness_controllor.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
# This code is made by MRayan Asim
# Packages needed:
# pip install opencv-python
# pip install mediapipe
# pip install screen-brightness-control
# pip install numpy
import cv2
import mediapipe as mp
from math import hypot
import screen_brightness_control as sbc
import numpy as np
# Initializing the Model
mpHands = mp.solutions.hands
hands = mpHands.Hands(
static_image_mode=False,
model_complexity=1,
min_detection_confidence=0.75,
min_tracking_confidence=0.75,
max_num_hands=2,
)
Draw = mp.solutions.drawing_utils
# Start capturing video from webcam
cap = cv2.VideoCapture(0)
while True:
# Read video frame by frame
_, frame = cap.read()
# Flip image
frame = cv2.flip(frame, 1)
# Convert BGR image to RGB image
frameRGB = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
# Process the RGB image
Process = hands.process(frameRGB)
landmarkList = []
# if hands are present in image(frame)
if Process.multi_hand_landmarks:
# detect handmarks
for handlm in Process.multi_hand_landmarks:
for _id, landmarks in enumerate(handlm.landmark):
# store height and width of image
height, width, color_channels = frame.shape
# calculate and append x, y coordinates
# of handmarks from image(frame) to lmList
x, y = int(landmarks.x * width), int(landmarks.y * height)
landmarkList.append([_id, x, y])
# draw Landmarks
Draw.draw_landmarks(frame, handlm, mpHands.HAND_CONNECTIONS)
# If landmarks list is not empty
if landmarkList != []:
# store x,y coordinates of (tip of) thumb
x_1, y_1 = landmarkList[4][1], landmarkList[4][2]
# store x,y coordinates of (tip of) index finger
x_2, y_2 = landmarkList[8][1], landmarkList[8][2]
# draw circle on thumb and index finger tip
cv2.circle(frame, (x_1, y_1), 7, (0, 255, 0), cv2.FILLED)
cv2.circle(frame, (x_2, y_2), 7, (0, 255, 0), cv2.FILLED)
# draw line from tip of thumb to tip of index finger
cv2.line(frame, (x_1, y_1), (x_2, y_2), (0, 255, 0), 3)
# calculate square root of the sum of
# squares of the specified arguments.
L = hypot(x_2 - x_1, y_2 - y_1)
# 1-D linear interpolant to a function
# with given discrete data points
# (Hand range 15 - 220, Brightness
# range 0 - 100), evaluated at length.
b_level = np.interp(L, [15, 220], [0, 100])
# set brightness
sbc.set_brightness(int(b_level))
# Display Video and when 'q' is entered, destroy
# the window
cv2.imshow("Image", frame)
if cv2.waitKey(1) & 0xFF == ord("q"):
break