-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.py
executable file
·84 lines (64 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python
from importlib import import_module
import os
from flask import Flask, render_template, Response, send_from_directory
from flask_cors import *
# import camera driver
import camera_opencv
# from camera_opencv import Camera
# from camera_opencv import commandAct
import threading
# Raspberry Pi camera module (requires picamera package)
# from camera_pi import Camera
app = Flask(__name__)
CORS(app, supports_credentials=True)
camera = camera_opencv.Camera()
def gen(camera):
"""Video streaming generator function."""
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():
"""Video streaming route. Put this in the src attribute of an img tag."""
return Response(gen(camera),
mimetype='multipart/x-mixed-replace; boundary=frame')
dir_path = os.path.dirname(os.path.realpath(__file__))
@app.route('/api/img/<path:filename>')
def sendimg(filename):
return send_from_directory(dir_path+'/dist/img', filename)
@app.route('/js/<path:filename>')
def sendjs(filename):
return send_from_directory(dir_path+'/dist/js', filename)
@app.route('/css/<path:filename>')
def sendcss(filename):
return send_from_directory(dir_path+'/dist/css', filename)
@app.route('/api/img/icon/<path:filename>')
def sendicon(filename):
return send_from_directory(dir_path+'/dist/img/icon', filename)
@app.route('/fonts/<path:filename>')
def sendfonts(filename):
return send_from_directory(dir_path+'/dist/fonts', filename)
@app.route('/<path:filename>')
def sendgen(filename):
return send_from_directory(dir_path+'/dist', filename)
@app.route('/')
def index():
return send_from_directory(dir_path+'/dist', 'index.html')
class webapp:
def __init__(self):
self.camera = camera
def commandInput(self, inputCommand, valueA=None):
camera_opencv.commandAct(inputCommand, valueA)
def modeselect(self, modeInput):
camera_opencv.Camera.modeSelect = modeInput
camera_opencv.Camera.CVMode = 'no'
def colorFindSet(self, H, S, V):
camera.colorFindSet(H, S, V)
def thread(self):
app.run(host='0.0.0.0', threaded=True)
def startthread(self):
fps_threading=threading.Thread(target=self.thread)
fps_threading.setDaemon(False)
fps_threading.start()