-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmain.py
52 lines (39 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
50
51
52
from flask import Flask, render_template, Response, request
from camera import VideoCamera
import time
import os
app = Flask(__name__)
#app = Flask(__name__, template_folder='/var/www/html/templates')
#background process happening without any refreshing
@app.route('/left')
def left():
print ("Left")
os.system("python servo.py 1 2 0.1 1")
return ("nothing")
@app.route('/center')
def center():
print ("Center")
os.system("python servo.py 89 90 0.3 1")
return ("nothing")
@app.route('/right')
def right():
print ("Right")
os.system("python servo.py 179 180 0.1 1")
return ("nothing")
@app.route('/', methods=['GET', 'POST'])
def move():
result = ""
if request.method == 'POST':
return render_template('index.html', res_str=result)
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\r\n')
@app.route('/video_feed')
def video_feed():
return Response(gen(VideoCamera()),
mimetype='multipart/x-mixed-replace; boundary=frame')
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True, threaded=True)