python opencv捕获摄像头并显示内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python opencv捕获摄像头并显示内容相关的知识,希望对你有一定的参考价值。

1、捕获摄像头和实时显示

import cv2
import numpy as np
import pickle
import matplotlib.pyplot as plt

cap = cv2.VideoCapture(0)

while True:
    ret,frame = cap.read()
    # Our operations on the frame come here
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    # Display the resulting frame
    cv2.imshow(‘frame‘,gray)
    if cv2.waitKey(1) & 0xFF == ord(‘q‘):
        break
 
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

 

2、从摄像头内抓拍图片

 

import cv2
import numpy as np
import pickle
import matplotlib.pyplot as plt

cap = cv2.VideoCapture(0)
index = 0
while True:
    ret,frame = cap.read()
    # Our operations on the frame come here
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    # Display the resulting frame
    cv2.imshow(‘frame‘,gray)
    if cv2.waitKey(1) & 0xFF == ord(‘p‘):
        cv2.imwrite("kk.jpg",frame)
        index = index + 1
    if cv2.waitKey(1) & 0xFF == ord(‘q‘):
        break
 
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

  

 

以上是关于python opencv捕获摄像头并显示内容的主要内容,如果未能解决你的问题,请参考以下文章

python_Opencv_读取视频_摄像头

为啥用opencv捕获摄像头视频流时,突然显示框内就变灰了呢

从 2 个摄像头捕获(OpenCV、Python)

使用opencv线程捕获空白图像

opencv调用摄像头函数

当我使用 rtsp 摄像头流时,opencv 视频捕获滞后