FacialRecognition-Demo/run.py

10 lines
206 B
Python
Raw Normal View History

2020-03-15 19:02:37 +00:00
from application import app
2020-04-29 20:00:17 +00:00
from application.face_rec import initFaceRec
2020-05-20 14:27:02 +00:00
import application.config as config
2020-05-09 16:44:38 +00:00
2020-04-29 20:00:17 +00:00
initFaceRec()
2020-05-20 14:27:02 +00:00
app.run(host="localhost", port=config.port, debug=config.debug, threaded=True)
2020-03-15 19:02:37 +00:00
2020-03-15 22:15:40 +00:00