blob: fc0b9c78b44304bb95ce33fd89e33c1ede69871c [file] [log] [blame]
Shad Ansari30a23732021-09-29 23:07:21 -07001#!/usr/bin/env python
Shad Ansariae90d252021-10-22 16:40:29 +00002"""
3SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
4SPDX-License-Identifier: LicenseRef-ONF-Member-1.01
5"""
Shad Ansari30a23732021-09-29 23:07:21 -07006from importlib import import_module
7import os
8from flask import Flask, render_template, Response
9from argparse import ArgumentParser, SUPPRESS
10
Shad Ansari2ecc6522021-12-03 21:03:48 +000011from person_detection import Camera
Shad Ansari30a23732021-09-29 23:07:21 -070012
Shad Ansari30a23732021-09-29 23:07:21 -070013
14app = Flask(__name__)
15
16
17@app.route('/')
18def index():
19 """Video streaming home page."""
Shad Ansari33340292021-10-14 22:10:01 +000020 return render_template('index.html', devices=[0, 1, 2, 3])
Shad Ansari30a23732021-09-29 23:07:21 -070021
22
23def gen(camera):
24 """Video streaming generator function."""
Shad Ansari30a23732021-09-29 23:07:21 -070025 while True:
26 frame = camera.get_frame()
27 yield (b'--frame\r\n'
28 b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')
29
Shad Ansarib5808d72021-10-04 12:43:27 -070030@app.route('/video_feed/<device>')
31def video_feed(device):
Shad Ansari30a23732021-09-29 23:07:21 -070032 """Video streaming route. Put this in the src attribute of an img tag."""
Shad Ansarib5808d72021-10-04 12:43:27 -070033 global args
Shad Ansaric0726e62021-10-04 22:38:53 +000034 camera = Camera(device, args)
Shad Ansari30a23732021-09-29 23:07:21 -070035 return Response(gen(camera),
36 mimetype='multipart/x-mixed-replace; boundary=frame')
37
Shad Ansarib5808d72021-10-04 12:43:27 -070038def name_to_port(name):
39 return int(name)
40
Shad Ansari30a23732021-09-29 23:07:21 -070041def build_argparser():
42 parser = ArgumentParser(add_help=False)
43 args = parser.add_argument_group('Options')
Shad Ansari5e8d0692021-12-08 19:09:34 +000044 args.add_argument('-h', '--help',
45 action = 'help',
46 default = SUPPRESS,
47 help = 'Show this help message and exit.')
48 args.add_argument("-m", "--model",
49 help = "Required. Path to an .xml file with a trained model.",
50 required = True,
51 type = str)
Shad Ansari30a23732021-09-29 23:07:21 -070052 args.add_argument("-i", "--input",
Shad Ansari5e8d0692021-12-08 19:09:34 +000053 help = "Path to video file or image. 'cam' for capturing video stream from camera",
54 default = "gstreamer",
55 type = str)
56 args.add_argument("-pt", "--prob_threshold",
57 help = "Optional. Probability threshold for detections filtering",
58 default = 0.75,
59 type = float)
60 args.add_argument("--idle",
61 action = 'store_true',
62 help = "Idle if no clients connected")
63 args.add_argument("--key",
64 help = "ROC api key",
65 required = True,
66 type = str)
67 args.add_argument("--mbrlow",
68 help = "Low range of MBR",
69 default = 5000000,
70 type = int)
71 args.add_argument("--mbrhigh",
72 help = "High range of MBR",
73 default = 10000000,
74 type = int)
75 args.add_argument("--devicegroup",
76 help = "Camera device group",
77 default = "menlo-4g-cameras",
78 type = str)
Shad Ansari30a23732021-09-29 23:07:21 -070079
80 return parser
81
Shad Ansarib5808d72021-10-04 12:43:27 -070082
Shad Ansari30a23732021-09-29 23:07:21 -070083if __name__ == '__main__':
84 args = build_argparser().parse_args()
Shad Ansarid70cb9e2021-10-26 05:33:02 +000085 app.run(host='0.0.0.0', debug=True)