KhomZ / Gesture-Volume-Control

Gesture Volume Control is a program application that is used to change the volume of a computer using gesture. We first look into hand tracking and then we will use the hand landmarks to find gesture of our hand to change the volume. This project is module based which means we will be using a previously created hand module which makes the hand tracking very easy.
GNU General Public License v3.0
0 stars 0 forks source link

issue in Gesture-Volume-Control\src code\FingerCounter\fingerCounter.py", line 34, in <module> #6

Closed KhomZ closed 2 years ago

KhomZ commented 2 years ago

Traceback (most recent call last): File "C:\Users\ACER\Desktop\JARVIS\Gesture-Volume-Control\src code\FingerCounter\fingerCounter.py", line 34, in img[0:200, 0:200] = overlayList[0] # slicing img[0:200,0:200] height and width ValueError: could not broadcast input array from shape (228,221,3) into shape (200,200,3)

KhomZ commented 2 years ago

try

img[0:228, 0:221] = overlayList[0]