我在python代码中收到此错误fr_height,fr_width,_ = frame.shape AttributeError:'NoneType'对象没有属性'shape'



我得到的错误:

C:UsersKGBPycharmProjectsScreen_recvenvScriptspython.exe C:/Users/KGB/PycharmProjects/Screen_rec/main.py
[ WARN:0] global D:aopencv-pythonopencv-pythonopencvmodulesvideoiosrccap_msmf.cpp (438) `anonymous-namespace'::SourceReaderCB::~SourceReaderCB terminating async callback
Traceback (most recent call last):
File "C:UsersKGBPycharmProjectsScreen_recmain.py", line 24, in <module>
fr_height, fr_width, _ = frame.shape
AttributeError: 'NoneType' object has no attribute 'shape'
Process finished with exit code 1

我的代码在这里:

import datetime
from PIL import ImageGrab
import numpy as np
import cv2
from win32api import GetSystemMetrics
import sys
width = GetSystemMetrics(0)
height = GetSystemMetrics(1)
time_stamp = datetime.datetime.now().strftime('%Y-%m-%d %H-%M-%S')
file_name = f'{time_stamp}.mp4'
fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v')
captured_video = cv2.VideoWriter(file_name, fourcc, 20.0, (width, height))
webcam = cv2.VideoCapture(1)
while True:
img = ImageGrab.grab(bbox=(0, 0, width, height))
img_np = np.array(img)
img_final = cv2.cvtColor(img_np, cv2.COLOR_BGR2RGB)
_, frame = webcam.read()
fr_height, fr_width, _ = frame.shape
img_final[0:fr_height, 0: fr_width, :] = frame[0: fr_height, 0: fr_width, :]
cv2.imshow('Secret Capture', img_final)
# cv2.imshow('webcam', frame)
captured_video.write(img_final)
if cv2.waitKey(10) == ord('q'):
break

我正在尝试构建一个python程序来筛选记录。我一直在网上寻找许多解决方案,但我发现没有一个会工作,这个程序是我作为学生的第一个高级项目

我找到了答案,我只需要把webcam = cv2.VideoCapture(1)改为webcam = cv2.VideoCapture(0)希望这能帮助到每一个有相同和/或"类似"问题的人

相关内容

  • 没有找到相关文章

最新更新