作者:黑天鹅猪猪_251 | 来源:互联网 | 2023-09-18 20:23
@app.route('/add')
def add():
return render_template('add.html')
def gen(camera):
while True:
label,frame = camera.get_frame()
if label=="unknown":
print("Inside If condition")
with app.app_context():
add()
为什么我们不能以这种方式调用函数?使用add(),当视频流中检测到未知面孔时,我想重定向到其他模板。