Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

opencv - How to make a virtual camera with python?

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
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This may be late but check this out pyvirtualcam

install it first:

pip install pyvirtualcam

You can make it like this:

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()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...