-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.py
40 lines (29 loc) · 1.02 KB
/
main.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
import os
import sys
from Camera import Camera
import cv2
from flask import Response, Flask, render_template
app = Flask(__name__)
@app.route('/')
@app.route('/index')
def indexPage():
return render_template('index.html')
def gen(camera):
while True:
try:
frame = camera.getFrame()
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\r\n')
except Exception as e:
exceptionType, exceptionObject, exceptionThrowback = sys.exc_info()
fileName = os.path.split(exceptionThrowback.tb_frame.f_code.co_filename)[1]
print(exceptionType, fileName, exceptionThrowback.tb_lineno)
print(e)
@app.route('/video_feed')
def video_feed():
return Response(gen(Camera(source=0)),
mimetype='multipart/x-mixed-replace; boundary=frame')
if __name__ == '__main__':
app.run(debug=True, host="0.0.0.0")