forked from dxue2012/python-webcam-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
53 lines (38 loc) · 1.38 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from sys import stdout
from makeup_artist import Makeup_artist
import logging
from flask import Flask, render_template, Response
from flask_socketio import SocketIO
from camera import Camera
from utils import base64_to_pil_image, pil_image_to_base64
app = Flask(__name__)
app.logger.addHandler(logging.StreamHandler(stdout))
app.config['SECRET_KEY'] = 'secret!'
app.config['DEBUG'] = True
socketio = SocketIO(app)
camera = Camera(Makeup_artist())
@socketio.on('input image', namespace='/test')
def test_message(input):
input = input.split(",")[1]
camera.enqueue_input(input)
#camera.enqueue_input(base64_to_pil_image(input))
@socketio.on('connect', namespace='/test')
def test_connect():
app.logger.info("client connected")
@app.route('/')
def index():
"""Video streaming home page."""
return render_template('index.html')
def gen():
"""Video streaming generator function."""
app.logger.info("starting to generate frames!")
while True:
frame = camera.get_frame() #pil_image_to_base64(camera.get_frame())
yield (b'--frame\r\n'
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')
@app.route('/video_feed')
def video_feed():
"""Video streaming route. Put this in the src attribute of an img tag."""
return Response(gen(), mimetype='multipart/x-mixed-replace; boundary=frame')
if __name__ == '__main__':
socketio.run(app)