首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Python /cvzone- UnboundLocalError

Python /cvzone- UnboundLocalError
EN

Stack Overflow用户
提问于 2021-10-12 15:20:57
回答 1查看 493关注 0票数 0

我正试着做一只ar鼠标(相机可以探测到你的手,而不是你的手指,而不是鼠标)。但是当检查哪个手指是向上的时,我得到了一个错误。在编写这个程序时,我遵循了本教程:https://www.youtube.com/watch?v=8gPONnGIPgw&t=332s。在这样做的时候,我做了一件不同的事情,那就是我没有像他那样创建一个名为HandTrackingModule.py的程序文件,而不是导入它,但是我只是从cvzone.HandTrackingModule导入HandDetector,它应该同样工作。

这是一个错误:

fingers = detector.fingersUp()

in fingersUp返回手指

UnboundLocalError:赋值之前引用的局部变量“手指”

这是代码:

代码语言:javascript
复制
import cv2
import numpy as np
import time
import autopy
from cvzone.HandTrackingModule import HandDetector

wCam, hCam = 640, 480
frameR = 100 # Frame Reduction
smoothening = 7
 
pTime = 0
plocX, plocY = 0, 0
clocX, clocY = 0, 0
 
cap = cv2.VideoCapture(0)
cap.set(3, wCam)
cap.set(4, hCam)
detector = HandDetector(detectionCon=0.7,maxHands=1)
wScr, hScr = autopy.screen.size()
 
while True:
    # 1. Find hand Landmarks
    success, img = cap.read()
    img = detector.findHands(img)
    lmList, bbox = detector.findPosition(img)

    # 2. Get the tip of the index and middle fingers
    if len(lmList) != 0:
        x1, y1 = lmList[8][:1]
        x2, y2 = lmList[12][:1]
    
    # 3. Check which fingers are up
    fingers = detector.fingersUp() #------------------this is where the error happens
    print(fingers)
    cv2.rectangle(img, (frameR, frameR), (wCam - frameR, hCam - frameR),
    (255, 0, 255), 2)

    # 4. Only Index Finger : Moving Mode
    if fingers[1] == 1 and fingers[2] == 0:
        # 5. Convert Coordinates
        x3 = np.interp(x1, (frameR, wCam - frameR), (0, wScr))
        y3 = np.interp(y1, (frameR, hCam - frameR), (0, hScr))

        # 6. Smoothen Values
        clocX = plocX + (x3 - plocX) / smoothening
        clocY = plocY + (y3 - plocY) / smoothening
    
        # 7. Move Mouse
        autopy.mouse.move(wScr - clocX, clocY)
        cv2.circle(img, (x1, y1), 15, (255, 0, 255), cv2.FILLED)
        plocX, plocY = clocX, clocY
        
    # 8. Both Index and middle fingers are up : Clicking Mode
    if fingers[1] == 1 and fingers[2] == 1:

        # 9. Find distance between fingers
        length, img, lineInfo = detector.findDistance(8, 12, img)

        # 10. Click mouse if distance short
        if length < 40:
            cv2.circle(img, (lineInfo[4], lineInfo[5]),
            15, (0, 255, 0), cv2.FILLED)
            autopy.mouse.click()

    # 12. Display
    cv2.imshow("Image", img)
    cv2.waitKey(1)
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2021-10-15 00:40:43

您的代码缩进是错误的。

代码语言:javascript
复制
# 2. Get the tip of the index and middle fingers
if len(lmList) != 0:
    x1, y1 = lmList[8][:1]
    x2, y2 = lmList[12][:1]

    # 3. Check which fingers are up
    fingers = detector.fingersUp() #------------------this is where the error happens
    print(fingers)
    cv2.rectangle(img, (frameR, frameR), (wCam - frameR, hCam - frameR),
    (255, 0, 255), 2)

    # 4. Only Index Finger : Moving Mode
    if fingers[1] == 1 and fingers[2] == 0:
        # 5. Convert Coordinates
        x3 = np.interp(x1, (frameR, wCam - frameR), (0, wScr))
        y3 = np.interp(y1, (frameR, hCam - frameR), (0, hScr))

        # 6. Smoothen Values
        clocX = plocX + (x3 - plocX) / smoothening
        clocY = plocY + (y3 - plocY) / smoothening
    
        # 7. Move Mouse
        autopy.mouse.move(wScr - clocX, clocY)
        cv2.circle(img, (x1, y1), 15, (255, 0, 255), cv2.FILLED)
        plocX, plocY = clocX, clocY
        
    # 8. Both Index and middle fingers are up : Clicking Mode
    if fingers[1] == 1 and fingers[2] == 1:

        # 9. Find distance between fingers
        length, img, lineInfo = detector.findDistance(8, 12, img)

        # 10. Click mouse if distance short
        if length < 40:
            cv2.circle(img, (lineInfo[4], lineInfo[5]),
            15, (0, 255, 0), cv2.FILLED)
            autopy.mouse.click()
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/69543102

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档