openCV连接和处理一个IP摄像机流(RTSP协议)。

问题描述 投票:0回答:1

我正试图连接和处理一个视频流从我的IP摄像机ai使用360Eye(S)相机。

这是我试图连接的代码。

import cv2
cap = cv2.VideoCapture('rtsp://admin:[email protected]')
while True:
    ret, img = cap.read()
    if ret == True:
        cv2.imshow('video output', img)
        k = cv2.waitKey(10)& 0xff
        if k == 27:
            break
cap.release()
cv2.destroyAllWindows()

我从来没有得到里面的if统计

更多信息:iv'e通过VLC和Onvif设备管理器播放视频流,这是我的opencv道具。

Video I/O:
    DC1394:                      NO
    FFMPEG:                      YES (prebuilt binaries)
      avcodec:                   YES (58.54.100)
      avformat:                  YES (58.29.100)
      avutil:                    YES (56.31.100)
      swscale:                   YES (5.5.100)
      avresample:                YES (4.0.0)
    GStreamer:                   NO
    DirectShow:                  YES
    Media Foundation:            YES
      DXVA:                      NO
python opencv camera vlc rtsp
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.