当前位置:   article > 正文

基于Opencv和Mediapipe实现手势控制音量_detector = htm.handdetector()

detector = htm.handdetector()

前言

在先前的博客中已经实现过了手势追踪的基本功能,由于最近项目需要,开始学习封装操作,也为了更简洁的调用手势追踪模块,所以参照了Youtube上一位大佬的教程,把之前的追踪模块整理了一下,将代码封装到了类中,然后加了一些功能。

环境配置

开发环境:Pycharm

所需软件包:Opencv-python,Mediapipe,math,pycaw,numpy

实现原理

手势识别和追踪原理在之前的博客已经详述过了,对音量的控制是通过Mediapipe实时检测得出的拇指指尖和食指指尖的坐标,再通过坐标计算出两者距离,并将距离处理为参数调用pycaw中相关的音量控制函数实现手势对音量的实时控制,并且利用Opencv画出柱状图像以显示音量的实时大小。

源码

手势跟踪模块

  1. import cv2
  2. import mediapipe as mp
  3. import time
  4. class handDetector():
  5. def __init__(self,mode = False,maxHands = 2,comp = 1,detectionCon = 0.5,trackCon = 0.5):#这里由于函数库更新,所以多了一个复杂度参数,默认设为1
  6. self.mode = mode
  7. self.maxHands = maxHands
  8. self.comp = comp
  9. self.detectionCon = detectionCon
  10. self.trackCon = trackCon
  11. self.mpHands = mp.solutions.hands
  12. self.hands = self.mpHands.Hands(self.mode,self.maxHands,self.comp,
  13. self.detectionCon,self.trackCon)
  14. self.mpDraw = mp.solutions.drawing_utils
  15. self.handLmStyle = self.mpDraw.DrawingSpec(color=(0, 0, 255), thickness=5) # 点的样式,前一个参数是颜色,后一个是粗细
  16. self.handConStyle = self.mpDraw.DrawingSpec(color=(0, 255, 0), thickness=3) # 线的样式BGR,前一个参数是颜色,后一个是粗细
  17. def findHands(self,img,draw = True):
  18. imgRGB = cv2.cvtColor(img,cv2.COLOR_BGR2RGB)#将图像转化为RGB图像
  19. self.results = self.hands.process(imgRGB)
  20. if self.results.multi_hand_landmarks:
  21. for handLms in self.results.multi_hand_landmarks:
  22. if draw:
  23. #self.mpDraw.draw_landmarks(img, handLms,
  24. # self.mpHands.HAND_CONNECTIONS)
  25. self.mpDraw.draw_landmarks(img, handLms, self.mpHands.HAND_CONNECTIONS, self.handLmStyle, self.handConStyle) # 画出点和线
  26. return img
  27. def findPosition(self,img,handNo = 0,draw = True):
  28. lmlist = []
  29. if self.results.multi_hand_landmarks:
  30. myHand = self.results.multi_hand_landmarks[handNo]
  31. for id, lm in enumerate(myHand.landmark):
  32. # print(id,lm)
  33. h, w, c = img.shape # 得到图像的长宽以及通道数
  34. cx, cy = int(lm.x * w), int(lm.y * h) # 计算出中心点位置
  35. #print(id, cx, cy)
  36. lmlist.append([id,cx,cy])
  37. if id == 0:
  38. cv2.circle(img, (cx, cy), 15, (0, 0, 255), cv2.FILLED)
  39. return lmlist
  40. def main():
  41. pTime = 0
  42. cTime = 0
  43. cap = cv2.VideoCapture(0) # 捕获摄像头
  44. detector = handDetector()
  45. while True:
  46. success, img = cap.read() # 读入每一帧图像
  47. img = detector.findHands(img)
  48. limist = detector.findPosition(img)
  49. if len(limist) != 0:
  50. print(limist[4])
  51. cTime = time.time()#用于计算FPS
  52. fps = 1/(cTime-pTime)
  53. pTime = cTime
  54. cv2.putText(img,f"FPS:{int(fps)}",(10,70),cv2.FONT_HERSHEY_PLAIN,3,
  55. (255,0,0),3)#在图像上画出实时FPS
  56. #print(results.multi_hand_landmarks)
  57. cv2.imshow("Image",img)#展示图像
  58. cv2.waitKey(1)#延迟1ms
  59. if __name__ == "__main__":
  60. main()

音量控制代码(需要调用手势跟踪模块)

  1. import cv2
  2. import mediapipe as mp
  3. import numpy as np
  4. import time#用于得知当前时间
  5. import HandTrackingModule as htm
  6. import math
  7. from ctypes import cast,POINTER
  8. from comtypes import CLSCTX_ALL
  9. from pycaw.pycaw import AudioUtilities, IAudioEndpointVolume
  10. #########################
  11. wCam,hCam = 640,480
  12. #########################
  13. cTime = 0
  14. pTime = 0
  15. cap = cv2.VideoCapture(0)
  16. cap.set(3,wCam)
  17. cap.set(4,hCam)
  18. detector = htm.handDetector(detectionCon=0.7)
  19. devices = AudioUtilities.GetSpeakers()
  20. interface = devices.Activate(
  21. IAudioEndpointVolume._iid_,CLSCTX_ALL,None)
  22. volume = cast(interface,POINTER(IAudioEndpointVolume))
  23. #volume.GetMute()
  24. #volume.GetMasterVolumeLevel()
  25. volRange = volume.GetVolumeRange()
  26. minVol = volRange[0]
  27. maxVol = volRange[1]
  28. vol = 0
  29. volBar = 400
  30. volPer = 0
  31. while True:
  32. success,img = cap.read()
  33. img = detector.findHands(img)
  34. lmList = detector.findPosition(img,draw=False)
  35. if len(lmList) != 0:
  36. print(lmList[4],lmList[8])
  37. x1,y1 = lmList[4][1],lmList[4][2]
  38. x2,y2 = lmList[8][1],lmList[8][2]
  39. cx,cy = (x1+x2)//2,(y1+y2)//2
  40. cv2.circle(img,(x1,y1),15,(255,0,255),cv2.FILLED)
  41. cv2.circle(img,(x2,y2),15,(255,0,255), cv2.FILLED)
  42. cv2.line(img,(x1,y1),(x2,y2),(255,0,255),3)
  43. cv2.circle(img, (cx, cy), 15, (255, 0, 255), cv2.FILLED)
  44. length = math.hypot(x2-x1,y2-y1)
  45. #print(length)
  46. #Hand Range 50 - 300
  47. #Volume Range -65 - 0
  48. vol = np.interp(length,[50,300],[minVol,maxVol])
  49. volBar = np.interp(length, [50, 300], [400, 150])
  50. volPer = np.interp(length, [50, 300], [0, 100])
  51. print(int(length),vol)
  52. volume.SetMasterVolumeLevel(vol,None)
  53. if length<50:
  54. cv2.circle(img, (cx, cy), 15, (0,255,0), cv2.FILLED)
  55. cv2.rectangle(img, (50, 150), (85, 400), (255, 0, 0), 3)
  56. cv2.rectangle(img, (50, int(volBar)), (85, 400), (255, 0, 0), cv2.FILLED)
  57. cTime = time.time()
  58. fps = 1/(cTime-pTime)
  59. pTime = cTime
  60. cv2.putText(img,f'{int(volPer)}%',(40,450),cv2.FONT_HERSHEY_PLAIN,
  61. 2,(255,0,0),2)
  62. cv2.imshow("IMG",img)
  63. cv2.waitKey(1)

代码效果

音量控制及显示

扬声器音量

 

手指关节坐标显示

 

 项目不足:

1、项目所设置的音量控制手势太过简单,手势很有可能在无意状态下被识别并且改变音量,影响项目实用性,后面会设置更复杂一些的手势来改良。

2、由于代码构建时对音量控制参数的转化过于直接,在img图像显示音量为60%时,电脑实际音量只有25左右,两者并不是绝对的正比关系,需要进行参数修正。

3、由于Mediapipe所得到的坐标并不是绝对的空间坐标,会受到手势和摄像头之间远近的影响,因此对使用距离有一定的限制,这一点暂时没有想到什么好的解决方式,用深度摄像头的话实用性又不高,或许可以利用摄像头成像原理,给出手掌或者手指的大致长度,通过相似三角形大致计算出手掌和摄像头之间的距离来解决。

注意事项:

由于使用者版本可能跟作者不一样,在源码实际使用时手势跟踪模块有可能会报错,这是由于软件包版本不一致造成定义的某些函数的参数个数等不一致导致的,可以查看该软件包的官方注释来修改参数定义。当然,也可以直接将Opencv版本修改为4.5以上版本,Mediapipe修改为0.8.9.1,则不会出现上述报错。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/80275
推荐阅读
相关标签
  

闽ICP备14008679号