使OpenCV流与Raspberry Pi Zero 2 W上的 flask 一起工作的问题

dluptydi  于 2022-11-15  发布在  其他
关注(0)|答案(1)|浏览(147)

我试图让一个OpenCV视频流运行在我的树莓派零2 W使用 flask 。
代码如下:

from flask import Flask, render_template, Response
import cv2
import time

# Initialize the Flask App
app = Flask(__name__)

def gen_frames():
    camera = cv2.VideoCapture(0)
    while True:
        success, frame = camera.read()
        if not success:
            break
        else:
            ret, buffer = cv2.imencode('.jpg', frame)
            frame = buffer.tobytes()
            yield(b'--frame\r\n'
                  b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n') #concat frame one by one and display results
            time.sleep(0.01)

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

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


if __name__ == "__main__":
    app.run(host="192.168.7.80", port="5000")

我运行的是Raspian版本10(Buster)、OpenCV版本3.2.0、Python版本3.7.3和Flask版本1.0.2。
出现的问题是当我运行上面的代码(使用正确的index.html)时,页面显示,但图像没有显示。如果我在Windows机器上运行相同的代码(版本不同[Python 3.9.6,OpenCV 4.5.5,和Flask 2.1.1]),它会正确显示。
我在rPi上运行的版本有问题吗?或者有什么不同?
先谢谢你。
--迈克

toe95027

toe950271#

一个可能的原因是内部调试器与重新加载程序冲突。建议在不使用重新加载程序的情况下启用调试:

app.run(host="192.168.7.80", port="5000", debug=True, use_reloader=False)

相关问题