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播放器
- Android 小專案之--使用【AudioManager】類控制音量Android
- Flask實戰腳手架-專案建立Flask
- Android 專案實戰--手機衛士(實現splash)Android
- python及pygame雷霆戰機遊戲專案實戰01 控制飛機PythonGAM遊戲
- 【opencv實戰】哈哈鏡OpenCV
- 鴻蒙HarmonyOS實戰-ArkUI事件(手勢方法)鴻蒙UI事件
- C/C++,Qt,Python,OpenCV小專案實戰-實時桌面顏色查詢C++QTPythonOpenCV
- dubbo專案實戰
- HarmonyOS 實戰專案
- 鴻蒙HarmonyOS實戰-ArkUI事件(組合手勢)鴻蒙UI事件
- 基於OPENCV的手勢識別技術OpenCV
- python實戰專案Python
- TypeScript + 大型專案實戰TypeScript
- AMP專案實戰分享
- LittleFox專案實戰
- AI開源專案 - OpenCVAIOpenCV
- 鴻蒙HarmonyOS實戰-ArkUI事件(單一手勢)鴻蒙UI事件
- Flutter專案實戰(1):通用專案框架搭建Flutter框架
- iOS專案開發實戰——自定義控制元件背景與顏色iOS控制元件
- iOS專案開發實戰——學會使用TableView列表控制元件(一)iOSView控制元件
- iOS專案開發實戰——學會使用TableView列表控制元件(二)iOSView控制元件
- 爬蟲專案實戰(一)爬蟲
- flask 專案開發實戰Flask
- 淺談 Angular 專案實戰Angular
- 爬蟲實戰專案集合爬蟲
- Vue專案實戰(一)——ToDoListVue
- MySQL專案實戰總結MySql
- 爬蟲實戰專案合集爬蟲
- 專案實戰小問題:
- koajs 專案實戰(二)JS
- 快速搭建gulp專案實戰
- 個人專案實戰(數獨)
- Vue 專案 SSR 改造實戰Vue
- 4個Python經典專案實戰,練手必備哦Python