【cv2调用摄像头】

文章目录

  • 前言
  • 一、pandas是什么?
  • 二、使用步骤
    • 1.引入库
    • 2.读入数据
  • 总结


前言

cv2调用摄像头


一、使用步骤

1.引入库

代码如下(示例):

import cv2
import time
import os
import numpy as np

2.读入数据

代码如下(示例):

import cv2
import time
import os
import numpy as np
def video_demo():
    # os.environ["OPENCV_FFMPEG_CAPTURE_OPTIONS"] = "rtsp_transport;tcp"
    a =time.time()
    print(a)
    # url = 'rtsp://192.168.28.44:8554/11'
    #
    # # 'rtsp: // 192.168.28.44: 8554 /'
    # capture = cv2.VideoCapture(url)

    capture = cv2.VideoCapture(0)#0为电脑内置摄像头
    # 更改分辨率大小和fps大小
    capture.set(cv2.CAP_PROP_FRAME_WIDTH,1280)
    capture.set(cv2.CAP_PROP_FRAME_HEIGHT,960)
    capture.set(cv2.CAP_PROP_FPS, 70)
    size = (int(capture.get(cv2.CAP_PROP_FRAME_WIDTH)), int(capture.get(cv2.CAP_PROP_FRAME_HEIGHT)))
    print(time.time() - a)
    # print(time.strftime('%Y-%m-%d %H:%M:%S'))
    print(size)
    while(True):
        fps = capture.get(cv2.CAP_PROP_FPS)
        print(fps)
        ret, frame = capture.read()#摄像头读取,ret为是否成功打开摄像头,true,false。 frame为视频的每一帧图像
        frame = cv2.flip(frame, 1)#摄像头是和人对立的,将图像左右调换回来正常显示。
        cv2.imshow("video", frame)
        c = cv2.waitKey(50)
        if c == 27:
            break
video_demo()
cv2.destroyAllWindows()

该处使用的自身摄像头的数据。


你可能感兴趣的:(YOLOv5,目标检测,深度学习,opencv,python)