我正在尝试将一个视频源从我的物理摄像机发送到Python中的虚拟摄像机,这样我就可以对它执行某些效果。
这是我的代码:
import pyvirtualcam
import numpy as np
cam = pyvirtualcam.Camera(width=1280, height=720, fps=30)
cvCam = cv2.VideoCapture(0)
while True:
try:
_, frame = cvCam.read()
cam.send(frame)
cam.sleep_until_next_frame()
except KeyboardInterrupt:
cam.close()
cvCam.close()
break
print("Done")
在我运行这段代码之后,我得到一个错误,说我还需要添加一个alpha通道。我从this post复制了一些代码。这是我的新代码,添加了一个alpha通道到代码:
import pyvirtualcam
import numpy as np
cam = pyvirtualcam.Camera(width=1280, height=720, fps=30)
cvCam = cv2.VideoCapture(0)
while True:
_, frame = cvCam.read()
b_channel, g_channel, r_channel = cv2.split(frame)
alpha_channel = np.ones(b_channel.shape, dtype=b_channel.dtype) * 50
frame = cv2.merge((b_channel, g_channel, r_channel, alpha_channel))
cam.send(frame)
cam.sleep_until_next_frame()
print("Done")
运行完这段代码后,它突然退出程序,没有任何错误信息,即使它是在一个while True
循环中。我无法调试这个问题。* 什么问题?*
1条答案
按热度按时间ngynwnxp1#
你可能有不匹配的帧大小从你的源与虚拟凸轮。目前这导致一个硬崩溃(另见https://github.com/letmaik/pyvirtualcam/issues/17)。
解决方案是查询源网络摄像头的宽度和高度,并使用它们来初始化虚拟摄像头,https://github.com/letmaik/pyvirtualcam/blob/main/examples/webcam_filter.py中的
webcam_filter.py
示例显示了如何完成此操作。大致如下: