Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,416 +1,413 @@
|
|
1 |
-
from ultralytics import YOLO
|
2 |
-
import base64
|
3 |
-
import cv2
|
4 |
-
import io
|
5 |
-
import numpy as np
|
6 |
-
from ultralytics.utils.plotting import Annotator
|
7 |
-
import streamlit as st
|
8 |
-
from streamlit_image_coordinates import streamlit_image_coordinates
|
9 |
-
import pandas as pd
|
10 |
-
import ollama
|
11 |
-
import bs4
|
12 |
-
import tempfile
|
13 |
-
|
14 |
-
from langchain.text_splitter import RecursiveCharacterTextSplitter
|
15 |
-
from langchain_community.document_loaders import WebBaseLoader
|
16 |
-
from langchain_community.document_loaders import CSVLoader
|
17 |
-
from langchain_community.vectorstores import Chroma
|
18 |
-
from langchain_community.embeddings import OllamaEmbeddings
|
19 |
-
from langchain_core.output_parsers import StrOutputParser
|
20 |
-
from langchain_core.runnables import RunnablePassthrough
|
21 |
-
|
22 |
-
def set_background(image_file1,image_file2):
|
23 |
-
|
24 |
-
with open(image_file1, "rb") as f:
|
25 |
-
img_data1 = f.read()
|
26 |
-
b64_encoded1 = base64.b64encode(img_data1).decode()
|
27 |
-
with open(image_file2, "rb") as f:
|
28 |
-
img_data2 = f.read()
|
29 |
-
b64_encoded2 = base64.b64encode(img_data2).decode()
|
30 |
-
style = f"""
|
31 |
-
<style>
|
32 |
-
.stApp{{
|
33 |
-
background-image: url(data:image/png;base64,{b64_encoded1});
|
34 |
-
background-size: cover;
|
35 |
-
|
36 |
-
}}
|
37 |
-
.st-emotion-cache-6qob1r{{
|
38 |
-
background-image: url(data:image/png;base64,{b64_encoded2});
|
39 |
-
background-size: cover;
|
40 |
-
border: 5px solid rgb(14, 17, 23);
|
41 |
-
|
42 |
-
}}
|
43 |
-
</style>
|
44 |
-
"""
|
45 |
-
st.markdown(style, unsafe_allow_html=True)
|
46 |
-
|
47 |
-
set_background('pngtree-city-map-navigation-interface-picture-image_1833642.png','2024-05-18_14-57-09_5235.png')
|
48 |
-
|
49 |
-
st.title("Traffic Flow and Optimization Toolkit")
|
50 |
-
|
51 |
-
sb = st.sidebar # defining the sidebar
|
52 |
-
|
53 |
-
sb.markdown("🛰️ **Navigation**")
|
54 |
-
page_names = ["PS1", "PS2", "PS3","Chat with Results"]
|
55 |
-
page = sb.radio("", page_names, index=0)
|
56 |
-
st.session_state['n'] = sb.slider("Number of ROIs",1,5)
|
57 |
-
|
58 |
-
if page == 'PS1':
|
59 |
-
uploaded_file = st.file_uploader("Choose a video...", type=["mp4", "mpeg"])
|
60 |
-
model = YOLO('yolov8n.pt')
|
61 |
-
if uploaded_file is not None:
|
62 |
-
with tempfile.NamedTemporaryFile(delete=False) as temp:
|
63 |
-
temp.write(uploaded_file.read())
|
64 |
-
if 'roi_list1' not in st.session_state:
|
65 |
-
st.session_state['roi_list1'] = []
|
66 |
-
if "all_rois1" not in st.session_state:
|
67 |
-
st.session_state['all_rois1'] = []
|
68 |
-
classes = model.names
|
69 |
-
|
70 |
-
done_1 = st.button('Selection Done')
|
71 |
-
|
72 |
-
while len(st.session_state["all_rois1"]) < st.session_state['n']:
|
73 |
-
cap = cv2.VideoCapture(temp.name)
|
74 |
-
while not done_1:
|
75 |
-
ret,frame=cap.read()
|
76 |
-
cv2.putText(frame,'SELECT ROI',(100,100),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),4)
|
77 |
-
if not ret:
|
78 |
-
st.write('ROI selection unsuccessfull')
|
79 |
-
break
|
80 |
-
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
|
81 |
-
value = streamlit_image_coordinates(frame,key='numpy',width=750)
|
82 |
-
st.session_state["roi_list1"].append([int(value['x']*2.55),int(value['y']*2.55)])
|
83 |
-
st.write(st.session_state["roi_list1"])
|
84 |
-
if cv2.waitKey(0)&0xFF==27:
|
85 |
-
break
|
86 |
-
cap.release()
|
87 |
-
st.session_state["all_rois1"].append(st.session_state["roi_list1"])
|
88 |
-
st.session_state["roi_list1"] = []
|
89 |
-
done_1 = False
|
90 |
-
|
91 |
-
st.write('ROI indices: ',st.session_state["all_rois1"][0])
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
cap = cv2.VideoCapture(temp.name)
|
96 |
-
st.write("Detection started")
|
97 |
-
st.session_state['fps'] = cap.get(cv2.CAP_PROP_FPS)
|
98 |
-
st.write(f"FPS OF VIDEO: {st.session_state['fps']}")
|
99 |
-
avg_list = []
|
100 |
-
count = 0
|
101 |
-
frame_placeholder = st.empty()
|
102 |
-
st.session_state["data1"] = {}
|
103 |
-
for i in range(len(st.session_state["all_rois1"])):
|
104 |
-
st.session_state["data1"][f"ROI{i}"] = []
|
105 |
-
while cap.isOpened():
|
106 |
-
ret,frame=cap.read()
|
107 |
-
if not ret:
|
108 |
-
break
|
109 |
-
count += 1
|
110 |
-
if count % 3 != 0:
|
111 |
-
continue
|
112 |
-
k = 0
|
113 |
-
for roi_list_here1 in st.session_state["all_rois1"]:
|
114 |
-
max = [0,0]
|
115 |
-
min = [10000,10000]
|
116 |
-
roi_list_here = roi_list_here1[1:]
|
117 |
-
for i in range(len(roi_list_here)):
|
118 |
-
if roi_list_here[i][0] > max[0]:
|
119 |
-
max[0] = roi_list_here[i][0]
|
120 |
-
if roi_list_here[i][1] > max[1]:
|
121 |
-
max[1] = roi_list_here[i][1]
|
122 |
-
if roi_list_here[i][0] < min[0]:
|
123 |
-
min[0] = roi_list_here[i][0]
|
124 |
-
if roi_list_here[i][1] < min[1]:
|
125 |
-
min[1] = roi_list_here[i][1]
|
126 |
-
frame_cropped = frame[min[1]:max[1],min[0]:max[0]]
|
127 |
-
roi_corners = np.array([roi_list_here],dtype=np.int32)
|
128 |
-
mask = np.zeros(frame.shape,dtype=np.uint8)
|
129 |
-
mask.fill(255)
|
130 |
-
channel_count = frame.shape[2]
|
131 |
-
ignore_mask_color = (255,)*channel_count
|
132 |
-
cv2.fillPoly(mask,roi_corners,0)
|
133 |
-
mask_cropped = mask[min[1]:max[1],min[0]:max[0]]
|
134 |
-
roi = cv2.bitwise_or(frame_cropped,mask_cropped)
|
135 |
-
|
136 |
-
#roi = frame[roi_list_here[0][1]:roi_list_here[1][1],roi_list_here[0][0]:roi_list_here[1][0]]
|
137 |
-
number = []
|
138 |
-
results = model.predict(roi)
|
139 |
-
for r in results:
|
140 |
-
boxes = r.boxes
|
141 |
-
counter = 0
|
142 |
-
for box in boxes:
|
143 |
-
counter += 1
|
144 |
-
name = classes[box.cls.numpy()[0]]
|
145 |
-
conf = str(round(box.conf.numpy()[0],2))
|
146 |
-
text = name+""+conf
|
147 |
-
bbox = box.xyxy[0].numpy()
|
148 |
-
cv2.rectangle(frame,(int(bbox[0])+min[0],int(bbox[1])+min[1]),(int(bbox[2])+min[0],int(bbox[3])+min[1]),(0,255,0),2)
|
149 |
-
cv2.putText(frame,text,(int(bbox[0])+min[0],int(bbox[1])+min[1]-5),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),2)
|
150 |
-
number.append(counter)
|
151 |
-
avg = sum(number)/len(number)
|
152 |
-
stats = str(round(avg,2))
|
153 |
-
if count%10 == 0:
|
154 |
-
st.session_state["data1"][f"ROI{k}"].append(avg)
|
155 |
-
k+=1
|
156 |
-
cv2.putText(frame,stats,(min[0],min[1]),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,0),4)
|
157 |
-
cv2.polylines(frame,roi_corners,True,(255,0,0),2)
|
158 |
-
cv2.putText(frame,'The average number of vehicles in the Regions of Interest',(100,100),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),4)
|
159 |
-
frame_placeholder.image(frame,channels='BGR')
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
with
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
st.
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
st.session_state["
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
import
|
308 |
-
import
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
st.
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
st.
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
def
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
st.
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
st.chat_message('
|
414 |
-
st.session_state.messages.append({'role':'user','content':prompt})
|
415 |
-
st.session_state.messages.append({'role':'AI','content':response})
|
416 |
-
st.chat_message('AI').markdown(response)
|
|
|
1 |
+
from ultralytics import YOLO
|
2 |
+
import base64
|
3 |
+
import cv2
|
4 |
+
import io
|
5 |
+
import numpy as np
|
6 |
+
from ultralytics.utils.plotting import Annotator
|
7 |
+
import streamlit as st
|
8 |
+
from streamlit_image_coordinates import streamlit_image_coordinates
|
9 |
+
import pandas as pd
|
10 |
+
import ollama
|
11 |
+
import bs4
|
12 |
+
import tempfile
|
13 |
+
|
14 |
+
from langchain.text_splitter import RecursiveCharacterTextSplitter
|
15 |
+
from langchain_community.document_loaders import WebBaseLoader
|
16 |
+
from langchain_community.document_loaders import CSVLoader
|
17 |
+
from langchain_community.vectorstores import Chroma
|
18 |
+
from langchain_community.embeddings import OllamaEmbeddings
|
19 |
+
from langchain_core.output_parsers import StrOutputParser
|
20 |
+
from langchain_core.runnables import RunnablePassthrough
|
21 |
+
|
22 |
+
def set_background(image_file1,image_file2):
|
23 |
+
|
24 |
+
with open(image_file1, "rb") as f:
|
25 |
+
img_data1 = f.read()
|
26 |
+
b64_encoded1 = base64.b64encode(img_data1).decode()
|
27 |
+
with open(image_file2, "rb") as f:
|
28 |
+
img_data2 = f.read()
|
29 |
+
b64_encoded2 = base64.b64encode(img_data2).decode()
|
30 |
+
style = f"""
|
31 |
+
<style>
|
32 |
+
.stApp{{
|
33 |
+
background-image: url(data:image/png;base64,{b64_encoded1});
|
34 |
+
background-size: cover;
|
35 |
+
|
36 |
+
}}
|
37 |
+
.st-emotion-cache-6qob1r{{
|
38 |
+
background-image: url(data:image/png;base64,{b64_encoded2});
|
39 |
+
background-size: cover;
|
40 |
+
border: 5px solid rgb(14, 17, 23);
|
41 |
+
|
42 |
+
}}
|
43 |
+
</style>
|
44 |
+
"""
|
45 |
+
st.markdown(style, unsafe_allow_html=True)
|
46 |
+
|
47 |
+
set_background('pngtree-city-map-navigation-interface-picture-image_1833642.png','2024-05-18_14-57-09_5235.png')
|
48 |
+
|
49 |
+
st.title("Traffic Flow and Optimization Toolkit")
|
50 |
+
|
51 |
+
sb = st.sidebar # defining the sidebar
|
52 |
+
|
53 |
+
sb.markdown("🛰️ **Navigation**")
|
54 |
+
page_names = ["PS1", "PS2", "PS3","Chat with Results"]
|
55 |
+
page = sb.radio("", page_names, index=0)
|
56 |
+
st.session_state['n'] = sb.slider("Number of ROIs",1,5)
|
57 |
+
|
58 |
+
if page == 'PS1':
|
59 |
+
uploaded_file = st.file_uploader("Choose a video...", type=["mp4", "mpeg"])
|
60 |
+
model = YOLO('yolov8n.pt')
|
61 |
+
if uploaded_file is not None:
|
62 |
+
with tempfile.NamedTemporaryFile(delete=False) as temp:
|
63 |
+
temp.write(uploaded_file.read())
|
64 |
+
if 'roi_list1' not in st.session_state:
|
65 |
+
st.session_state['roi_list1'] = []
|
66 |
+
if "all_rois1" not in st.session_state:
|
67 |
+
st.session_state['all_rois1'] = []
|
68 |
+
classes = model.names
|
69 |
+
|
70 |
+
done_1 = st.button('Selection Done')
|
71 |
+
|
72 |
+
while len(st.session_state["all_rois1"]) < st.session_state['n']:
|
73 |
+
cap = cv2.VideoCapture(temp.name)
|
74 |
+
while not done_1:
|
75 |
+
ret,frame=cap.read()
|
76 |
+
cv2.putText(frame,'SELECT ROI',(100,100),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),4)
|
77 |
+
if not ret:
|
78 |
+
st.write('ROI selection unsuccessfull')
|
79 |
+
break
|
80 |
+
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
|
81 |
+
value = streamlit_image_coordinates(frame,key='numpy',width=750)
|
82 |
+
st.session_state["roi_list1"].append([int(value['x']*2.55),int(value['y']*2.55)])
|
83 |
+
st.write(st.session_state["roi_list1"])
|
84 |
+
if cv2.waitKey(0)&0xFF==27:
|
85 |
+
break
|
86 |
+
cap.release()
|
87 |
+
st.session_state["all_rois1"].append(st.session_state["roi_list1"])
|
88 |
+
st.session_state["roi_list1"] = []
|
89 |
+
done_1 = False
|
90 |
+
|
91 |
+
st.write('ROI indices: ',st.session_state["all_rois1"][0])
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
cap = cv2.VideoCapture(temp.name)
|
96 |
+
st.write("Detection started")
|
97 |
+
st.session_state['fps'] = cap.get(cv2.CAP_PROP_FPS)
|
98 |
+
st.write(f"FPS OF VIDEO: {st.session_state['fps']}")
|
99 |
+
avg_list = []
|
100 |
+
count = 0
|
101 |
+
frame_placeholder = st.empty()
|
102 |
+
st.session_state["data1"] = {}
|
103 |
+
for i in range(len(st.session_state["all_rois1"])):
|
104 |
+
st.session_state["data1"][f"ROI{i}"] = []
|
105 |
+
while cap.isOpened():
|
106 |
+
ret,frame=cap.read()
|
107 |
+
if not ret:
|
108 |
+
break
|
109 |
+
count += 1
|
110 |
+
if count % 3 != 0:
|
111 |
+
continue
|
112 |
+
k = 0
|
113 |
+
for roi_list_here1 in st.session_state["all_rois1"]:
|
114 |
+
max = [0,0]
|
115 |
+
min = [10000,10000]
|
116 |
+
roi_list_here = roi_list_here1[1:]
|
117 |
+
for i in range(len(roi_list_here)):
|
118 |
+
if roi_list_here[i][0] > max[0]:
|
119 |
+
max[0] = roi_list_here[i][0]
|
120 |
+
if roi_list_here[i][1] > max[1]:
|
121 |
+
max[1] = roi_list_here[i][1]
|
122 |
+
if roi_list_here[i][0] < min[0]:
|
123 |
+
min[0] = roi_list_here[i][0]
|
124 |
+
if roi_list_here[i][1] < min[1]:
|
125 |
+
min[1] = roi_list_here[i][1]
|
126 |
+
frame_cropped = frame[min[1]:max[1],min[0]:max[0]]
|
127 |
+
roi_corners = np.array([roi_list_here],dtype=np.int32)
|
128 |
+
mask = np.zeros(frame.shape,dtype=np.uint8)
|
129 |
+
mask.fill(255)
|
130 |
+
channel_count = frame.shape[2]
|
131 |
+
ignore_mask_color = (255,)*channel_count
|
132 |
+
cv2.fillPoly(mask,roi_corners,0)
|
133 |
+
mask_cropped = mask[min[1]:max[1],min[0]:max[0]]
|
134 |
+
roi = cv2.bitwise_or(frame_cropped,mask_cropped)
|
135 |
+
|
136 |
+
#roi = frame[roi_list_here[0][1]:roi_list_here[1][1],roi_list_here[0][0]:roi_list_here[1][0]]
|
137 |
+
number = []
|
138 |
+
results = model.predict(roi)
|
139 |
+
for r in results:
|
140 |
+
boxes = r.boxes
|
141 |
+
counter = 0
|
142 |
+
for box in boxes:
|
143 |
+
counter += 1
|
144 |
+
name = classes[box.cls.numpy()[0]]
|
145 |
+
conf = str(round(box.conf.numpy()[0],2))
|
146 |
+
text = name+""+conf
|
147 |
+
bbox = box.xyxy[0].numpy()
|
148 |
+
cv2.rectangle(frame,(int(bbox[0])+min[0],int(bbox[1])+min[1]),(int(bbox[2])+min[0],int(bbox[3])+min[1]),(0,255,0),2)
|
149 |
+
cv2.putText(frame,text,(int(bbox[0])+min[0],int(bbox[1])+min[1]-5),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),2)
|
150 |
+
number.append(counter)
|
151 |
+
avg = sum(number)/len(number)
|
152 |
+
stats = str(round(avg,2))
|
153 |
+
if count%10 == 0:
|
154 |
+
st.session_state["data1"][f"ROI{k}"].append(avg)
|
155 |
+
k+=1
|
156 |
+
cv2.putText(frame,stats,(min[0],min[1]),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,0),4)
|
157 |
+
cv2.polylines(frame,roi_corners,True,(255,0,0),2)
|
158 |
+
cv2.putText(frame,'The average number of vehicles in the Regions of Interest',(100,100),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),4)
|
159 |
+
frame_placeholder.image(frame,channels='BGR')
|
160 |
+
cap.release()
|
161 |
+
st.write("The resultant data is:")
|
162 |
+
st.write(st.session_state.data1)
|
163 |
+
else:
|
164 |
+
st.error('PLEASE UPLOAD AN IMAGE OF THE FORMAT JPG,JPEG OR PNG', icon="🚨")
|
165 |
+
|
166 |
+
elif page == "PS3":
|
167 |
+
uploaded_file1 = st.file_uploader("Choose a video...", type=["mp4", "mpeg"])
|
168 |
+
model1 = YOLO("yolov8n.pt")
|
169 |
+
model2 = YOLO("best.pt")
|
170 |
+
if uploaded_file1 is not None:
|
171 |
+
with tempfile.NamedTemporaryFile(delete=False) as temp:
|
172 |
+
temp.write(uploaded_file.read())
|
173 |
+
if 'roi_list2' not in st.session_state:
|
174 |
+
st.session_state['roi_list2'] = []
|
175 |
+
if "all_rois2" not in st.session_state:
|
176 |
+
st.session_state['all_rois2'] = []
|
177 |
+
classes = model1.names
|
178 |
+
|
179 |
+
done_2 = st.button('Selection Done')
|
180 |
+
|
181 |
+
while len(st.session_state["all_rois2"]) < st.session_state['n']:
|
182 |
+
cap = cv2.VideoCapture(temp.name)
|
183 |
+
while not done_2:
|
184 |
+
ret,frame=cap.read()
|
185 |
+
cv2.putText(frame,'SELECT ROI',(100,100),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),4)
|
186 |
+
if not ret:
|
187 |
+
st.write('ROI selection has concluded')
|
188 |
+
break
|
189 |
+
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
|
190 |
+
value = streamlit_image_coordinates(frame,key='numpy',width=750)
|
191 |
+
st.session_state["roi_list2"].append([int(value['x']*2.5),int(value['y']*2.5)])
|
192 |
+
st.write(st.session_state["roi_list2"])
|
193 |
+
if cv2.waitKey(0)&0xFF==27:
|
194 |
+
break
|
195 |
+
cap.release()
|
196 |
+
st.session_state["all_rois2"].append(st.session_state["roi_list2"])
|
197 |
+
st.session_state["roi_list2"] = []
|
198 |
+
done_2 = False
|
199 |
+
|
200 |
+
st.write('ROI indices: ',st.session_state["all_rois2"][0])
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
cap = cv2.VideoCapture(temp.name)
|
205 |
+
st.write("Detection started")
|
206 |
+
avg_list = []
|
207 |
+
count = 0
|
208 |
+
frame_placeholder = st.empty()
|
209 |
+
st.session_state.data = {}
|
210 |
+
for i in range(len(st.session_state["all_rois2"])):
|
211 |
+
st.session_state["data"][f"ROI{i}"] = []
|
212 |
+
for i in range(len(st.session_state['all_rois2'])):
|
213 |
+
st.session_state.data[f"ROI{i}"] = []
|
214 |
+
while cap.isOpened():
|
215 |
+
ret,frame=cap.read()
|
216 |
+
if not ret:
|
217 |
+
break
|
218 |
+
count += 1
|
219 |
+
if count % 3 != 0:
|
220 |
+
continue
|
221 |
+
# rois = []
|
222 |
+
k = 0
|
223 |
+
for roi_list_here1 in st.session_state["all_rois2"]:
|
224 |
+
max = [0,0]
|
225 |
+
min = [10000,10000]
|
226 |
+
roi_list_here = roi_list_here1[1:]
|
227 |
+
for i in range(len(roi_list_here)-1):
|
228 |
+
if roi_list_here[i][0] > max[0]:
|
229 |
+
max[0] = roi_list_here[i][0]
|
230 |
+
if roi_list_here[i][1] > max[1]:
|
231 |
+
max[1] = roi_list_here[i][1]
|
232 |
+
if roi_list_here[i][0] < min[0]:
|
233 |
+
min[0] = roi_list_here[i][0]
|
234 |
+
if roi_list_here[i][1] < min[1]:
|
235 |
+
min[1] = roi_list_here[i][1]
|
236 |
+
frame_cropped = frame[min[1]:max[1],min[0]:max[0]]
|
237 |
+
roi_corners = np.array([roi_list_here],dtype=np.int32)
|
238 |
+
mask = np.zeros(frame.shape,dtype=np.uint8)
|
239 |
+
mask.fill(255)
|
240 |
+
channel_count = frame.shape[2]
|
241 |
+
ignore_mask_color = (255,)*channel_count
|
242 |
+
cv2.fillPoly(mask,roi_corners,0)
|
243 |
+
mask_cropped = mask[min[1]:max[1],min[0]:max[0]]
|
244 |
+
roi = cv2.bitwise_or(frame_cropped,mask_cropped)
|
245 |
+
|
246 |
+
#roi = frame[roi_list_here[0][1]:roi_list_here[1][1],roi_list_here[0][0]:roi_list_here[1][0]]
|
247 |
+
number = []
|
248 |
+
results = model1.predict(roi)
|
249 |
+
results_pothole = model2.predict(source=frame)
|
250 |
+
for r in results:
|
251 |
+
boxes = r.boxes
|
252 |
+
counter = 0
|
253 |
+
for box in boxes:
|
254 |
+
counter += 1
|
255 |
+
name = classes[box.cls.numpy()[0]]
|
256 |
+
conf = str(round(box.conf.numpy()[0],2))
|
257 |
+
text = name+conf
|
258 |
+
bbox = box.xyxy[0].numpy()
|
259 |
+
cv2.rectangle(frame,(int(bbox[0])+min[0],int(bbox[1])+min[1]),(int(bbox[2])+min[0],int(bbox[3])+min[1]),(0,255,0),2)
|
260 |
+
cv2.putText(frame,text,(int(bbox[0])+min[0],int(bbox[1])+min[1]-5),cv2.FONT_HERSHEY_SIMPLEX, 0.4,(0,0,255),2)
|
261 |
+
number.append(counter)
|
262 |
+
for r in results_pothole:
|
263 |
+
masks = r.masks
|
264 |
+
boxes = r.boxes.cpu().numpy()
|
265 |
+
xyxys = boxes.xyxy
|
266 |
+
confs = boxes.conf
|
267 |
+
if masks is not None:
|
268 |
+
shapes = np.ones_like(frame)
|
269 |
+
for mask,conf,xyxy in zip(masks,confs,xyxys):
|
270 |
+
polygon = mask.xy[0]
|
271 |
+
if conf >= 0.49 and len(polygon)>=3:
|
272 |
+
cv2.fillPoly(shapes,pts=np.int32([polygon]),color=(0,0,255,0.5))
|
273 |
+
frame = cv2.addWeighted(frame,0.7,shapes,0.3,gamma=0)
|
274 |
+
cv2.rectangle(frame,(int(xyxy[0]),int(xyxy[1])),(int(xyxy[2]),int(xyxy[3])),(0,0,255),2)
|
275 |
+
cv2.putText(frame,'Pothole '+str(conf),(int(xyxy[0]),int(xyxy[1])-5),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),2)
|
276 |
+
|
277 |
+
avg = sum(number)/len(number)
|
278 |
+
stats = str(round(avg,2))
|
279 |
+
if count % 10 == 0:
|
280 |
+
st.session_state.data[f"ROI{k}"].append(avg)
|
281 |
+
k+=1
|
282 |
+
cv2.putText(frame,stats,(min[0],min[1]),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,0),4)
|
283 |
+
cv2.polylines(frame,roi_corners,True,(255,0,0),2)
|
284 |
+
if counter >= 5:
|
285 |
+
cv2.putText(frame,'!!CONGESTION MORE THAN '+str(counter)+' Objects',(min[0]+20,min[1]+20),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,0),4)
|
286 |
+
cv2.polylines(frame,roi_corners,True,(255,0,0),2)
|
287 |
+
cv2.putText(frame,'Objects in the Regions of Interest',(100,100),cv2.FONT_HERSHEY_SIMPLEX, 1,(0,0,255),4)
|
288 |
+
frame_placeholder.image(frame,channels='BGR')
|
289 |
+
cap.release()
|
290 |
+
st.write("The result is:")
|
291 |
+
st.write(st.session.data)
|
292 |
+
|
293 |
+
else:
|
294 |
+
st.error('PLEASE UPLOAD AN IMAGE OF THE FORMAT JPG,JPEG OR PNG', icon="🚨")
|
295 |
+
|
296 |
+
elif page == "PS2":
|
297 |
+
st.header("CLICK ON RUN SCRIPT TO START A TRAFFIC SIMULATION")
|
298 |
+
script = st.button("RUN SCRIPT")
|
299 |
+
st.session_state.con = -1
|
300 |
+
if script:
|
301 |
+
st.session_state.con += 1
|
302 |
+
import gymnasium as gym
|
303 |
+
import sumo_rl
|
304 |
+
import os
|
305 |
+
from stable_baselines3 import DQN
|
306 |
+
from stable_baselines3.common.vec_env import DummyVecEnv
|
307 |
+
from stable_baselines3.common.evaluation import evaluate_policy
|
308 |
+
from sumo_rl import SumoEnvironment
|
309 |
+
env = gym.make('sumo-rl-v0',
|
310 |
+
net_file='single-intersection.net.xml',
|
311 |
+
route_file='single-intersection-gen.rou.xml',
|
312 |
+
out_csv_name='output',
|
313 |
+
use_gui=True,
|
314 |
+
single_agent=True,
|
315 |
+
num_seconds=5000)
|
316 |
+
model1 = DQN.load('DQN_MODEL3.zip',env=env)
|
317 |
+
st.write("The Simulation is currently running for 5000 steps, Results will be shown shortly.....")
|
318 |
+
one,two = evaluate_policy(model1,env = env,n_eval_episodes=5,render=True)
|
319 |
+
st.write("Evaluation Results: \nPer Episode Rewards(Higher the better):",one,"\nPer-episode lengths (in number of steps):",two)
|
320 |
+
import matplotlib.pyplot as plt
|
321 |
+
def eval_plot(path,metric,path_compare = None):
|
322 |
+
data = pd.read_csv(path)
|
323 |
+
if path_compare is not None:
|
324 |
+
data1 = pd.read_csv(path_compare)
|
325 |
+
x = []
|
326 |
+
for i in range(0,len(data)):
|
327 |
+
x.append(i)
|
328 |
+
|
329 |
+
y = data[metric]
|
330 |
+
y_1 = pd.to_numeric(y)
|
331 |
+
y_arr = np.array(y_1)
|
332 |
+
if path_compare is not None:
|
333 |
+
y2 = data1[metric]
|
334 |
+
y_2 = pd.to_numeric(y2)
|
335 |
+
y_arr2 = np.array(y_2)
|
336 |
+
|
337 |
+
x_arr = np.array(x)
|
338 |
+
|
339 |
+
fig = plt.figure()
|
340 |
+
ax1 = fig.add_subplot(2, 1, 1)
|
341 |
+
ax1.set_title(metric)
|
342 |
+
if path_compare is not None:
|
343 |
+
ax2 = fig.add_subplot(2, 1, 2,sharey=ax1)
|
344 |
+
ax2.set_title('compare '+metric)
|
345 |
+
|
346 |
+
ax1.plot(x_arr,y_arr)
|
347 |
+
|
348 |
+
if path_compare is not None:
|
349 |
+
ax2.plot(x_arr,y_arr2)
|
350 |
+
|
351 |
+
return fig
|
352 |
+
for i in range(1,2):
|
353 |
+
st.pyplot(eval_plot(f'output_conn{st.session_state.con}_ep{i}.csv','system_mean_waiting_time'))
|
354 |
+
st.pyplot(eval_plot(f'output_conn{st.session_state.con}_ep{i}.csv','agents_total_accumulated_waiting_time'))
|
355 |
+
|
356 |
+
elif page == "Chat with Results":
|
357 |
+
st.title('Chat with the Results')
|
358 |
+
st.write("Please upload the relevant CSV data to get started")
|
359 |
+
reload = st.button('Reload')
|
360 |
+
if 'isran' not in st.session_state or reload == True:
|
361 |
+
st.session_state['isran'] = False
|
362 |
+
|
363 |
+
|
364 |
+
uploaded_file = st.file_uploader('Choose your .csv file', type=["csv"])
|
365 |
+
if uploaded_file is not None and st.session_state['isran'] == False:
|
366 |
+
with open("temp.csv", "wb") as f:
|
367 |
+
f.write(uploaded_file.getvalue())
|
368 |
+
loader = CSVLoader('temp.csv')
|
369 |
+
docs = loader.load()
|
370 |
+
text_splitter = RecursiveCharacterTextSplitter(chunk_size = 1000, chunk_overlap = 200)
|
371 |
+
splits = text_splitter.split_documents(docs)
|
372 |
+
|
373 |
+
embeddings = OllamaEmbeddings(model='mistral')
|
374 |
+
st.session_state.vectorstore = Chroma.from_documents(documents=splits,embedding=embeddings)
|
375 |
+
st.session_state['isran'] = True
|
376 |
+
|
377 |
+
if st.session_state['isran'] == True:
|
378 |
+
st.write("Embedding created")
|
379 |
+
|
380 |
+
def fdocs(docs):
|
381 |
+
return "\n\n".join(doc.page_content for doc in docs)
|
382 |
+
|
383 |
+
def llm(question,context):
|
384 |
+
formatted_prompt = f"Question: {question}\n\nContext:{context}"
|
385 |
+
response = ollama.chat(model='mistral', messages=[
|
386 |
+
{
|
387 |
+
'role': 'user',
|
388 |
+
'content': formatted_prompt
|
389 |
+
},
|
390 |
+
])
|
391 |
+
return response['message']['content']
|
392 |
+
|
393 |
+
|
394 |
+
|
395 |
+
def rag_chain(question):
|
396 |
+
retriever = st.session_state.vectorstore.as_retriever()
|
397 |
+
retrieved_docs = retriever.invoke(question)
|
398 |
+
formatted_context = fdocs(retrieved_docs)
|
399 |
+
return llm(question,formatted_context)
|
400 |
+
|
401 |
+
if 'messages' not in st.session_state:
|
402 |
+
st.session_state.messages = []
|
403 |
+
|
404 |
+
for message in st.session_state.messages:
|
405 |
+
st.chat_message(message['role']).markdown(message['content'])
|
406 |
+
|
407 |
+
prompt = st.chat_input("Say something")
|
408 |
+
response = rag_chain(prompt)
|
409 |
+
if prompt:
|
410 |
+
st.chat_message('user').markdown(prompt)
|
411 |
+
st.session_state.messages.append({'role':'user','content':prompt})
|
412 |
+
st.session_state.messages.append({'role':'AI','content':response})
|
413 |
+
st.chat_message('AI').markdown(response)
|
|
|
|
|
|