我想为我的面部识别代码创建一个UI。我正在使用flask将HTML页面连接到python代码。我有一个简单的机器学习模型,它将给出输出。我想在HTML页面上流式传输相机并在那里显示输出。
以下代码在html页面上流式传输相机,但是流式传输后,我无法将其连接至python人脸识别代码。 我的python代码在检测器函数中。
#Flask code
@app.route('/detector1')
def detector1():
return render_template('detect_face.html')
@app.route('/video_viewer2')
def video_viewer2():
return Response(detector(),mimetype='multipart/x-mixed-replace; boundary=frame')
我想在HTML页面上显示实时网络摄像机,单击按钮后,它应该可以给我我的机器学习模型预测的价值。