web-dev-qa-db-ja.com

OpenCVでIPカメラにアクセス

ビデオストリームにアクセスできません。誰かが私がビデオストリームを取得するのを手伝ってくれませんか。私はグーグルで解決策を検索し、スタックオーバーフローに別の質問を投稿しましたが、残念ながら問題を解決できないものはありません。

import cv2
cap = cv2.VideoCapture()
cap.open('http://192.168.4.133:80/videostream.cgi?user=admin&pwd=admin')
while(cap.isOpened()):
    ret, frame = cap.read()
    cv2.imshow('frame', frame)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break
cap.release()
cv2.destroyAllWindows()
6
Taimur Islam

ありがとうございました。たぶん、今urlopenはurllibの下にありません。それはurllib.request.urlopenの下にあります。私はこのコードを使用します:

import cv2
from urllib.request import urlopen
import numpy as np

stream = urlopen('http://192.168.4.133:80/video_feed')
bytes = ''
while True:
    bytes += stream.read(1024)
    a = bytes.find(b'\xff\xd8')
    b = bytes.find(b'\xff\xd9')
    if a != -1 and b != -1:
        jpg = bytes[a:b+2]
        bytes = bytes[b+2:]
        img = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.IMREAD_COLOR)
        cv2.imshow('Video', img)
        if cv2.waitKey(1) == 27:
            exit(0)
2
Taimur Islam

このコードを使用して、ブラウザーでライブビデオフィードを取得できます。

ノートパソコンのウェブカメラ以外のカメラにアクセスするには、次のようなRTSPリンクを使用できます

rtsp:// admin:[email protected]:554/h264/ch1/main/av_stream "

どこ

   username:admin
   password:12345
   your camera ip address and port
   ch1 is first camera on that DVR

cv2.VideoCamera(0)をカメラのこのようなリンクに置き換えると、機能します

camera.py

import cv2

class VideoCamera(object):
    def __init__(self):
        # Using OpenCV to capture from device 0. If you have trouble capturing
        # from a webcam, comment the line below out and use a video file
        # instead.
        self.video = cv2.VideoCapture(0)
        # If you decide to use video.mp4, you must have this file in the folder
        # as the main.py.
        # self.video = cv2.VideoCapture('video.mp4')

    def __del__(self):
        self.video.release()

    def get_frame(self):
        success, image = self.video.read()
        # We are using Motion JPEG, but OpenCV defaults to capture raw images,
        # so we must encode it into JPEG in order to correctly display the
        # video stream.
        ret, jpeg = cv2.imencode('.jpg', image)
        return jpeg.tobytes()

main.py

from flask import Flask, render_template, Response
from camera import VideoCamera

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

def gen(camera):
    while True:
        frame = camera.get_frame()
        yield (b'--frame\r\n'
               b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n\r\n')

@app.route('/video_feed')
def video_feed():
    return Response(gen(VideoCamera()),
                    mimetype='multipart/x-mixed-replace; boundary=frame')

if __name__ == '__main__':
    app.run(Host='0.0.0.0', debug=True)

次に、フォローすることができます このブログ ビデオストリームのFPSを増やす

2
Kushal Parikh

Urllibを使用して、ビデオストリームからフレームを読み取ることができます。

import cv2
import urllib
import numpy as np

stream = urllib.urlopen('http://192.168.100.128:5000/video_feed')
bytes = ''
while True:
    bytes += stream.read(1024)
    a = bytes.find(b'\xff\xd8')
    b = bytes.find(b'\xff\xd9')
    if a != -1 and b != -1:
        jpg = bytes[a:b+2]
        bytes = bytes[b+2:]
        img = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.IMREAD_COLOR)
        cv2.imshow('Video', img)
        if cv2.waitKey(1) == 27:
            exit(0)

あなたのPCのウェブカメラからビデオをストリーミングしたい場合はこれをチェックしてください。 https://github.com/shehzi-khan/video-streaming

2

直接ビデオフィードの代わりにRTSPを使用できます。

すべてのIPカメラには、ライブビデオをストリーミングするためのRTSPがあります。

したがって、ビデオフィードの代わりにRTSPリンクを使用できます

1
Dhaval

以下のコードを使用して、opencvから直接ipcamにアクセスします。 VideoCaptureのURLを特定のカメラのrtspURLに置き換えます。与えられたものは、私が使用したほとんどのカメラで一般的に機能します。

import cv2

cap = cv2.VideoCapture("rtsp://[username]:[pass]@[ip address]/media/video1")

while True:
    ret, image = cap.read()
    cv2.imshow("Test", image)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break
cv2.destroyAllWindows()
1
NumbMonkE

python 3を使用する場合は、文字列の代わりにバイト配列を使用する必要があります。(現在のトップアンサーを変更する)

with urllib.request.urlopen('http://192.168.100.128:5000/video_feed') as stream:

    bytes = bytearray()

    while True:
        bytes += stream.read(1024)
        a = bytes.find(b'\xff\xd8')
        b = bytes.find(b'\xff\xd9')
        if a != -1 and b != -1:
            jpg = bytes[a:b+2]
            bytes = bytes[b+2:]
            img = cv2.imdecode(np.frombuffer(jpg, dtype=np.uint8), cv2.IMREAD_COLOR)
            cv2.imshow('Video', img)
            if cv2.waitKey(1) & 0xFF == ord('q'):
                break

cv2.destroyAllWindows()
0
Seth Adams