Open-Cv Project #1
GestureBasedVolumeControl
By Swaddhay Paladhi
2023
GestureBasedVolumeControl
#importing all the required libraries
import cv2
import mediapipe as mp
from math import hypot
from ctypes import cast, POINTER
from comtypes import CLSCTX_ALL
from [Link] import AudioUtilities, IAudioEndpointVolume
import numpy as np
cap = [Link](0) #Checks for camera
mpHands = [Link] #detects hand/finger
hands = [Link]() #complete the initialization configuration of hands
mpDraw = [Link].drawing_utils
#To access speaker through the library pycaw
devices = [Link]()
interface = [Link](IAudioEndpointVolume._iid_, CLSCTX_ALL, None)
volume = cast(interface, POINTER(IAudioEndpointVolume))
volbar=400
volper=0
volMin,volMax = [Link]()[:2]
while True:
success,img = [Link]() #If camera works capture an image
imgRGB = [Link](img,cv2.COLOR_BGR2RGB) #Convert to rgb
#Collection of gesture information
results = [Link](imgRGB) #completes the image processing.
lmList = [] #empty list
if results.multi_hand_landmarks: #list of all hands detected.
#By accessing the list, we can get the information of each hand's corresponding flag bit
for handlandmark in results.multi_hand_landmarks:
for id,lm in enumerate([Link]): #adding counter and returning it
# Get finger joint points
h,w,_ = [Link]
cx,cy = int(lm.x*w),int(lm.y*h)
[Link]([id,cx,cy]) #adding to the empty list 'lmList'
mpDraw.draw_landmarks(img,handlandmark,mpHands.HAND_CONNECTIONS)
if lmList != []:
#getting the value at a point
#x #y
x1,y1 = lmList[4][1],lmList[4][2] #thumb
x2,y2 = lmList[8][1],lmList[8][2] #index finger
#creating circle at the tips of thumb and index finger
[Link](img,(x1,y1),13,(255,0,0),[Link]) #image #fingers #radius #rgb
[Link](img,(x2,y2),13,(255,0,0),[Link]) #image #fingers #radius #rgb
[Link](img,(x1,y1),(x2,y2),(255,0,0),3) #create a line b/w tips of index finger and thumb
length = hypot(x2-x1,y2-y1) #distance b/w tips using hypotenuse
# from numpy we find our length,by converting hand range in terms of volume range ie b/w -63.5 to 0
vol = [Link](length,[30,350],[volMin,volMax])
volbar=[Link](length,[30,350],[400,150])
volper=[Link](length,[30,350],[0,100])
print(vol,int(length))
[Link](vol, None)
# Hand range 30 - 350
# Volume range -63.5 - 0.0
#creating volume bar for volume level
[Link](img,(50,150),(85,400),(0,0,255),4) # vid ,initial position ,ending position ,rgb ,thickness
[Link](img,(50,int(volbar)),(85,400),(0,0,255),[Link])
[Link](img,f"{int(volper)}%",(10,40),cv2.FONT_ITALIC,1,(0, 255, 98),3)
#tell the volume percentage ,location,font of text,length,rgb color,thickness
[Link]('Image',img) #Show the video
if [Link](1) & 0xff==ord(' '): #By using spacebar delay will stop
break
[Link]() #stop cam
[Link]() #close window
'''CLICK SPACE BAR IN ORDER TO STOP THE PROGRAM'''