-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.py
More file actions
33 lines (26 loc) · 813 Bytes
/
Copy pathmain.py
File metadata and controls
33 lines (26 loc) · 813 Bytes
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
#!/usr/bin/env python
#-*- coding: utf-8 -*-
from flask import Flask, render_template, Response
from camera import Camera
import threading
app = Flask(__name__)
#카메라 설정 - camera.py파일에서 설정 가능
@app.route('/')
def index():
return render_template('index.html')
def gen(camera):
while True:
frame = 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():
print("video_feed")
global camera
return Response(gen(camera),
mimetype='multipart/x-mixed-replace; boundary=frame')
if __name__ == '__main__':
global camera
camera = Camera()
camera.initialize()
app.run(host='203.252.166.213', debug=False, threaded=True)