如何用python制作虚拟相机?

How to make a virtual camera with python?(如何用python制作虚拟相机?)
本文介绍了如何用python制作虚拟相机?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在 python 中尝试使用 openCV,我制作了一个简单的网络摄像头,它只会以黑白显示,但我想知道是否有可能以某种方式将它与不和谐联系起来,所以每当我打电话给朋友时,他看到我是黑色的和白色.`

I am experimenting with openCV in python and I made a simple webcam that will only show you in black and white but I was wondering if it was possible to somehow connect it to discord so whenever I call a friend he sees me in black and white.`

import cv2

capture = cv2.VideoCapture(0)

 capture.set(3, 640)
 capture.set(4, 480)
 capture.set(10, 300)

 while True:
     sucess, img = capture.read()
     img = cv2.Canny(img, 100, 100)
     cv2.imshow("Webcam", img)
     if cv2.waitKey(1) & 0xFF == ord('q'):
         break

推荐答案

这可能会晚,但请检查一下 pyvirtualcam

This may be late but check this out pyvirtualcam

先安装:

pip install pyvirtualcam

你可以这样:

import pyvirtualcam
import numpy as np

with pyvirtualcam.Camera(width=1280, height=720, fps=30) as cam:
    while True:
        frame = np.zeros((cam.height, cam.width, 4), np.uint8) # RGBA
        frame[:,:,:3] = cam.frames_sent % 255 # grayscale animation
        frame[:,:,3] = 255
        cam.send(frame)
        cam.sleep_until_next_frame()
        cam.sleep_until_next_frame()

这篇关于如何用python制作虚拟相机?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

patching a class yields quot;AttributeError: Mock object has no attributequot; when accessing instance attributes(修补类会产生“AttributeError:Mock object has no attribute;访问实例属性时)
How to mock lt;ModelClassgt;.query.filter_by() in Flask-SqlAlchemy(如何在 Flask-SqlAlchemy 中模拟 lt;ModelClassgt;.query.filter_by())
FTPLIB error socket.gaierror: [Errno 8] nodename nor servname provided, or not known(FTPLIB 错误 socket.gaierror: [Errno 8] nodename nor servname provided, or not known)
Weird numpy.sum behavior when adding zeros(添加零时奇怪的 numpy.sum 行为)
Why does the #39;int#39; object is not callable error occur when using the sum() function?(为什么在使用 sum() 函数时会出现 int object is not callable 错误?)
How to sum in pandas by unique index in several columns?(如何通过几列中的唯一索引对 pandas 求和?)