-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
38 lines (30 loc) · 902 Bytes
/
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
"""
File: app.py
Description: The heart of aplication.
Author: Matthew Conde Oltra
"""
from flask import Flask, render_template, Response, jsonify
import numpy as np
from cam import VideoStream
app = Flask(__name__)
camera = VideoStream()
@app.route('/')
def index():
"""Video streaming home page."""
return render_template('index.html')
@app.route('/video_feed')
def video_feed():
def generate(camera):
while True:
frame = camera.hand_pose()
yield (b'--frame\r\n'b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n\r\n')
return Response(generate(camera), mimetype='multipart/x-mixed-replace;boundary=frame')
# Return as a json de current gesture detected
@app.route('/gesture')
def gesture():
return jsonify({"gesture": camera.getGesture()})
@app.errorhandler(500)
def internal_error(error):
return "500 error"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)