-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
44 lines (29 loc) · 1019 Bytes
/
app.py
File metadata and controls
44 lines (29 loc) · 1019 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
34
35
36
37
38
39
40
41
42
43
44
from typing import Any, Generator
import cv2
from flask import Flask, Response, render_template
app = Flask(__name__)
def generate_frames() -> Generator[bytes, Any, None]:
cap = cv2.VideoCapture(
0
) # Make sure to provide the correct path to your video file
while cap.isOpened():
success, frame = cap.read()
if not success:
break
_, buffer = cv2.imencode(".jpg", frame)
frame = buffer.tobytes()
yield (b"--frame\r\n" b"Content-Type: image/jpeg\r\n\r\n" + frame + b"\r\n\r\n")
cv2.waitKey(
int(1000 / cap.get(cv2.CAP_PROP_FPS))
) # Introduce delay based on fps
cap.release()
@app.route("/")
def index() -> str:
return render_template("index.html")
@app.route("/video_feed")
def video_feed() -> Response:
return Response(
generate_frames(), mimetype="multipart/x-mixed-replace; boundary=frame"
)
if __name__ == "__main__":
app.run(debug=False, host="127.0.0.1", port="5000")