-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.py
179 lines (148 loc) · 6.13 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import streamlit as st
import cv2
import torch
from utils.hubconf import custom
import numpy as np
import tempfile
import time
from collections import Counter
import json
import pandas as pd
from model_utils import get_yolo, color_picker_fn, get_system_stat
p_time = 0
st.sidebar.title('Settings')
# Choose the model
model_type = st.sidebar.selectbox(
'Choose YOLO Model', ('YOLO Model', 'YOLOv8', 'YOLOv7')
)
st.title(f'{model_type} Predictions')
sample_img = cv2.imread('logo.jpg')
FRAME_WINDOW = st.image(sample_img, channels='BGR')
cap = None
if not model_type == 'YOLO Model':
path_model_file = st.sidebar.text_input(
f'path to {model_type} Model:',
f'eg: dir/{model_type}.pt'
)
if st.sidebar.checkbox('Load Model'):
# YOLOv7 Model
if model_type == 'YOLOv7':
# GPU
gpu_option = st.sidebar.radio(
'PU Options:', ('CPU', 'GPU'))
if not torch.cuda.is_available():
st.sidebar.warning('CUDA Not Available, So choose CPU', icon="⚠️")
else:
st.sidebar.success(
'GPU is Available on this Device, Choose GPU for the best performance',
icon="✅"
)
# Model
if gpu_option == 'CPU':
model = custom(path_or_model=path_model_file)
if gpu_option == 'GPU':
model = custom(path_or_model=path_model_file, gpu=True)
# YOLOv8 Model
elif model_type == 'YOLOv8':
from ultralytics import YOLO
model = YOLO(path_model_file)
# Load Class names
class_labels = model.names
# Inference Mode
options = st.sidebar.radio(
'Options:', ('Webcam', 'Image', 'Video', 'RTSP'), index=1)
tracker = st.sidebar.selectbox("Choose Tracker", ("Tracker", "bytetrack", "botsort"))
# Confidence
confidence = st.sidebar.slider(
'Detection Confidence', min_value=0.0, max_value=1.0, value=0.25)
# Draw thickness
draw_thick = st.sidebar.slider(
'Draw Thickness:', min_value=1,
max_value=20, value=3
)
color_pick_list = []
for i in range(len(class_labels)):
classname = class_labels[i]
color = color_picker_fn(classname, i)
color_pick_list.append(color)
# Image
if options == 'Image':
upload_img_file = st.sidebar.file_uploader(
'Upload Image', type=['jpg', 'jpeg', 'png'])
if upload_img_file is not None:
pred = st.checkbox(f'Predict Using {model_type}')
file_bytes = np.asarray(
bytearray(upload_img_file.read()), dtype=np.uint8)
img = cv2.imdecode(file_bytes, 1)
FRAME_WINDOW.image(img, channels='BGR')
if pred:
img, current_no_class = get_yolo(
img, model_type, model, confidence,
color_pick_list, class_labels, draw_thick,
Tracker=tracker
)
FRAME_WINDOW.image(img, channels='BGR')
# Current number of classes
class_fq = dict(Counter(i for sub in current_no_class for i in set(sub)))
class_fq = json.dumps(class_fq, indent = 4)
class_fq = json.loads(class_fq)
df_fq = pd.DataFrame(class_fq.items(), columns=['Class', 'Number'])
# Updating Inference results
with st.container():
st.markdown("<h2>Inference Statistics</h2>", unsafe_allow_html=True)
st.markdown("<h3>Detected objects in curret Frame</h3>", unsafe_allow_html=True)
st.dataframe(df_fq, use_container_width=True)
# Video
elif options == 'Video':
upload_video_file = st.sidebar.file_uploader(
'Upload Video', type=['mp4', 'avi', 'mkv'])
if upload_video_file is not None:
pred = st.checkbox(f'Predict Using {model_type}')
tfile = tempfile.NamedTemporaryFile(delete=False)
tfile.write(upload_video_file.read())
cap = cv2.VideoCapture(tfile.name)
# if pred:
# Web-cam
elif options == 'Webcam':
cam_options = st.sidebar.selectbox('Webcam Channel',
('Select Channel', '0', '1', '2', '3'))
if not cam_options == 'Select Channel':
pred = st.checkbox(f'Predict Using {model_type}')
cap = cv2.VideoCapture(int(cam_options))
# RTSP
elif options == 'RTSP':
rtsp_url = st.sidebar.text_input(
'RTSP URL:',
'eg: rtsp://admin:name6666@198.162.1.58/cam/realmonitor?channel=0&subtype=0'
)
pred = st.checkbox(f'Predict Using {model_type}')
cap = cv2.VideoCapture(rtsp_url)
if (cap != None) and pred:
stframe1 = st.empty()
stframe2 = st.empty()
stframe3 = st.empty()
while True:
success, img = cap.read()
if not success:
st.error(
f"{options} NOT working\nCheck {options} properly!!",
icon="🚨"
)
break
img, current_no_class = get_yolo(
img, model_type, model, confidence,
color_pick_list, class_labels, draw_thick,
Tracker=tracker
)
FRAME_WINDOW.image(img, channels='BGR')
# FPS
c_time = time.time()
fps = 1 / (c_time - p_time)
p_time = c_time
# Current number of classes
class_fq = dict(Counter(i for sub in current_no_class for i in set(sub)))
class_fq = json.dumps(class_fq, indent = 4)
class_fq = json.loads(class_fq)
df_fq = pd.DataFrame(class_fq.items(), columns=['Class', 'Number'])
# Updating Inference results
get_system_stat(stframe1, stframe2, stframe3, fps, df_fq)