模块没有以下成员

问题描述 投票:-1回答:1
import numpy
import cv2

cap = cv2.VideoCapture(0)

while(True):

ret, frame = cap.read()

cv2.imshow('frame',frame)
if cv2.waitKey(20) & 0xFF == ord('q'):
    break


cap.release()
cv2.destroyAllWindows()

我收到此错误

1.Module'cv2'没有'VideoCapture'成员

2.Module'cv2'没有'imshow'成员

3.Module'cv2'没有'waitKey'成员

4.Module'cv2'没有'destroyAllWindows'成员

https://i.stack.imgur.com/IQStj.png

python opencv error-handling face-recognition face
1个回答
0
投票

尝试以下操作

  1. 在VScode上:CTRL + Shift + P
  2. 选择“首选项:打开设置(JSON)”
  3. 将此行添加到JSON文件中:“ python.linting.pylintArgs”:[“-generated-members = cv2。*”]
© www.soinside.com 2019 - 2024. All rights reserved.