如何将摄像机视频RGB和其他值真实的获取到Python脚本中/ edit

kokeuurv  于 2022-12-15  发布在  Python
关注(0)|答案(1)|浏览(95)

我正在尝试创建一个Python程序来获取实时摄像机视频中每个像素的RGB值,然后创建一个新窗口,用不同的字符(如“x”、“!"、“-"、“#”等)绘制相同的视频。
问题是,我可以使用的工具,以及我如何让相机视频直接通过我的程序进入一个新窗口?
我试过视频编辑库,但没有成功。

qlckcl4x

qlckcl4x1#

你肯定想玩OpenCV
https://docs.opencv.org/4.x/dd/d43/tutorial_py_video_display.html
捕获网络摄像头的基本示例:

import numpy as np
import cv2 as cv
cap = cv.VideoCapture(0)
if not cap.isOpened():
    print("Cannot open camera")
    exit()
while True:
    # Capture frame-by-frame
    ret, frame = cap.read()
    # if frame is read correctly ret is True
    if not ret:
        print("Can't receive frame (stream end?). Exiting ...")
        break
    # Our operations on the frame come here
    gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY)
    # Display the resulting frame
    cv.imshow('frame', gray)
    if cv.waitKey(1) == ord('q'):
        break
# When everything done, release the capture
cap.release()
cv.destroyAllWindows()

相关问题