如何使用python将OpenCV输出发送到浏览器?

时间:2018-04-06 17:36:50

标签: python opencv object-detection live-streaming yolo

我有一个带有开放cv的简单python脚本,它接收视频并使用YOLO对其进行对象检测。我的问题是,如何将输出作为直播流显示在我的网站上 这是python代码,保存到output.avi。

import cv2
from darkflow.net.build import TFNet
import numpy as np
import time
import pafy

options = {
    'model': 'cfg/tiny-yolo.cfg',
    'load': 'bin/yolov2-tiny.weights',
    'threshold': 0.2,
    'gpu': 0.75
}

tfnet = TFNet(options)
colors = [tuple(255 * np.random.rand(3)) for _ in range(10)]

capture = cv2.VideoCapture()
capture.open("rtmp://888888888888888")

fourcc = cv2.VideoWriter_fourcc(*'XVID')
out = cv2.VideoWriter('output.avi',fourcc, 20.0, (640,480))

#capture = cv2.VideoCapture(url)
capture.set(cv2.CAP_PROP_FRAME_WIDTH, 1920)
capture.set(cv2.CAP_PROP_FRAME_HEIGHT, 1080)

while True:
    stime = time.time()
    ret, frame = capture.read()
    if ret:
        results = tfnet.return_predict(frame)


        for color, result in zip(colors, results):
            if result['label'] == 'person':
                tl = (result['topleft']['x'], result['topleft']['y'])
                br = (result['bottomright']['x'], result['bottomright']['y'])
                label = result['label']
                confidence = result['confidence']
                text = '{}: {:.0f}%'.format(label, confidence * 100)
                frame = cv2.rectangle(frame, tl, br, color, 5)
                frame = cv2.putText(
                    frame, text, tl, cv2.FONT_HERSHEY_COMPLEX, 0.8, (0, 0, 0), 2)
        out.write(frame)
        cv2.imshow('frame', frame)
        print('FPS {:.1f}'.format(1 / (time.time() - stime)))
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

capture.release()
out.release()
cv2.destroyAllWindows()

3 个答案:

答案 0 :(得分:4)

您可以使用ffmpeg或GStreamer通过本地网络流式传输图像,而不是写入文件,并使用某些播放器来显示流。或者您可以使用简单的烧瓶服务器和html页面来执行此操作:https://blog.miguelgrinberg.com/post/video-streaming-with-flask

答案 1 :(得分:0)

我有点晚了,但是您使用了VidGear Python库的WebGear,它是一个强大的ASGI Video-streamer API,它建立在Starlette(轻型ASGI框架)的基础上/工具包。但是此API仅在testing分支中可用,因此请使用以下命令进行安装:

要求::仅适用于Python 3.6 +。

git clone https://github.com/abhiTronix/vidgear.git
cd vidgear
git checkout testing
sudo pip3 install .
sudo pip3 uvicorn #additional dependency
cd

然后,您可以使用以下完整的python示例,该示例在网络上的任何浏览器上的地址http://0.0.0.0:8000/上运行视频服务器:

#import libs
import uvicorn
from vidgear.gears import WebGear

#various performance tweaks
options = {"frame_size_reduction": 40, "frame_jpeg_quality": 80, "frame_jpeg_optimize": True, "frame_jpeg_progressive": False}

#initialize WebGear app with suitable video file (for e.g `foo.mp4`) 
web = WebGear(source = "foo.mp4", logging = True, **options)

#run this app on Uvicorn server at address http://0.0.0.0:8000/
uvicorn.run(web(), host='0.0.0.0', port=8000)

#close app safely
web.shutdown()

Documentation

如果仍然出现错误,请在其GitHub存储库中提出一个issue here

答案 2 :(得分:0)

使用cv2.imencode将图像编码为jpeg格式,并将其传递到浏览器中的标签。删除cv2.imshow,waitkey会更好,因为它无助于在浏览器中显示,它将使服务器无法启动,并且在按“ q”后,程序将停止,因此将没有任何输出。

相反,创建一个带有api端点的flask应用程序以返回帧。不要忘了以JPEG格式编码,否则将无法正常工作。