Opencv專案實戰:14 手勢控制音量
import cv2
import time
import HandTrackingModule as htm
import math
import numpy as np
from ctypes import cast, POINTER
from comtypes import CLSCTX_ALL
from pycaw.pycaw import AudioUtilities, IAudioEndpointVolume
wCam, hCam = 640, 480
cap = cv2.VideoCapture(0)
cap.set(3, wCam)
cap.set(4, hCam)
pTime = 0
detector = htm.handDetector(detectionCon=0.7)
devices = AudioUtilities.GetSpeakers()
interface = devices.Activate(
IAudioEndpointVolume._iid_, CLSCTX_ALL, None)
volume = cast(interface, POINTER(IAudioEndpointVolume))
volume.GetMute()
volume.GetMasterVolumeLevel()
volRange = volume.GetVolumeRange()
##print的結果(-74.0, 0.0, 1.0)
minvol,maxvol = volRange[0],volRange[1]
vol=0
volBar=400
volPer=0
while True:
success, img = cap.read()
detector.findHands(img)
lmList=detector.findPosition(img,draw=False)
if len(lmList)!=0:
# print(lmList[4])
x1,y1=lmList[4][1],lmList[4][2]
x2,y2=lmList[8][1],lmList[8][2]
cx,cy=(x1+x2)//2,(y1+y2)//2
cv2.circle(img,(x1,y1),15,(125, 125, 255),cv2.FILLED)
cv2.circle(img, (x2, y2), 15, (125, 125, 255), cv2.FILLED)
cv2.line(img,(x1,y1),(x2,y2),(125, 125, 255),3)
cv2.circle(img, (cx, cy), 15, (125, 125, 255), cv2.FILLED)
length=math.hypot(x2-x1,y2-y1)
if length<50:
cv2.circle(img, (cx, cy), 15, (0, 255, 0), cv2.FILLED)
# print(length)
#handrange 50——300
#volume range -74——0
vol = np.interp(length, [50, 300], [minvol, maxvol])
volBar = np.interp(length, [50, 300], [400, 150])
volPer = 外匯跟單gendan5.comnp.interp(length, [50, 300], [0, 100])
print(int(length), vol)
volume.SetMasterVolumeLevel(vol, None)
cv2.rectangle(img, (50, 150), (85, 400), (125, 125, 255), 3)
cv2.rectangle(img, (50, int(volBar)), (85, 400), (125, 125, 255), cv2.FILLED)
cv2.putText(img, f'{int(volPer)}%', (40, 450), cv2.FONT_HERSHEY_COMPLEX,
1, (125, 125, 255), 3)
#################列印幀率#####################
cTime = time.time()
fps = 1 / (cTime - pTime)
pTime = cTime
cv2.putText(img, f'FPS: {int(fps)}', (40, 50), cv2.FONT_HERSHEY_COMPLEX,
1, (255, 100, 100), 3)
cv2.imshow("Img", img)
k=cv2.waitKey(1)
if k==27:break
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69946337/viewspace-2925791/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [MAUI 專案實戰] 手勢控制音樂播放器(三): 動畫UI播放器動畫
- openCV實戰專案--人臉考勤OpenCV
- [MAUI 專案實戰] 手勢控制音樂播放器(一): 概述與架構UI播放器架構
- [MAUI 專案實戰] 手勢控制音樂播放器(四):圓形進度條UI播放器
- Flask實戰腳手架-專案建立Flask
- C/C++,Qt,Python,OpenCV小專案實戰-實時桌面顏色查詢C++QTPythonOpenCV
- python及pygame雷霆戰機遊戲專案實戰01 控制飛機PythonGAM遊戲
- dubbo專案實戰
- HarmonyOS 實戰專案
- LittleFox專案實戰
- python實戰專案Python
- 【opencv實戰】哈哈鏡OpenCV
- AI開源專案 - OpenCVAIOpenCV
- TypeScript + 大型專案實戰TypeScript
- AMP專案實戰分享
- 企業如何實施專案控制?
- Flutter專案實戰(1):通用專案框架搭建Flutter框架
- 4個Python經典專案實戰,練手必備哦Python
- TensorFlow系列專題(六):實戰專案Mnist手寫資料集識別
- 基於OPENCV的手勢識別技術OpenCV
- 專案實戰之gradle在實際專案中的使用Gradle
- 淺談 Angular 專案實戰Angular
- 爬蟲實戰專案集合爬蟲
- 專案實戰小問題:
- Jenkins部署Python專案實戰JenkinsPython
- Vue專案實戰(一)——ToDoListVue
- 快速搭建gulp專案實戰
- Android MVP模式專案實戰AndroidMVP模式
- 爬蟲專案實戰(一)爬蟲
- flask 專案開發實戰Flask
- Sentry - X專案 - 落地實戰
- MySQL專案實戰總結MySql
- Python專案實戰例項Python
- 爬蟲實戰專案合集爬蟲
- 鴻蒙HarmonyOS實戰-ArkUI事件(手勢方法)鴻蒙UI事件
- go語言實戰教程:實戰專案資源匯入和專案框架搭建Go框架
- 餓了麼手機版-VUE2,專案實戰程式碼Vue
- 長沙前端培訓機構:新手練手前端專案實戰前端