Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,37 +1,119 @@
|
|
1 |
import streamlit as st
|
2 |
import cv2
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
import cv2
|
3 |
+
from ultralytics import YOLO
|
4 |
+
|
5 |
+
model = YOLO('best.pt')
|
6 |
+
|
7 |
+
|
8 |
+
def track(source, iou, conf):
|
9 |
+
#result = model.track(source=source, device='mps')
|
10 |
+
result = model.track(source=source, iou=iou, conf=conf, device='cpu')
|
11 |
+
return result
|
12 |
+
|
13 |
+
def inferir_camara(camera1, iou, conf, st_frame, st_cantidad, stop_button_pressed):
|
14 |
+
while camera1.isOpened() and not stop_button_pressed:
|
15 |
+
ret, frame = camera1.read()
|
16 |
+
if not ret:
|
17 |
+
st.write("Video Capture Ended")
|
18 |
+
break
|
19 |
+
|
20 |
+
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
|
21 |
+
|
22 |
+
resultado = track(frame, iou, conf)
|
23 |
+
|
24 |
+
# Extract bounding boxes (replace this with the specific method from your library)
|
25 |
+
boxes = resultado[0].boxes.cls # Boxes object for bbox outputs
|
26 |
+
|
27 |
+
# Update object count
|
28 |
+
object_count = len(boxes)
|
29 |
+
|
30 |
+
st_cantidad.write(f'Cantidad detectados: {object_count}')
|
31 |
+
|
32 |
+
res_plotted = resultado[0].plot()
|
33 |
+
|
34 |
+
st_frame.image(res_plotted,
|
35 |
+
caption='Detected Video',
|
36 |
+
channels="RGB",
|
37 |
+
#use_column_width=True
|
38 |
+
)
|
39 |
+
|
40 |
+
if cv2.waitKey(1) & 0xFF == ord("q") or stop_button_pressed:
|
41 |
+
break
|
42 |
+
|
43 |
+
# Define function to display frames from two cameras
|
44 |
+
def display_two_cameras(camera1, camera2):
|
45 |
+
while True:
|
46 |
+
# Capture frames from both cameras
|
47 |
+
success1, frame1 = camera1.read()
|
48 |
+
success2, frame2 = camera2.read()
|
49 |
+
|
50 |
+
# Check if both captures were successful
|
51 |
+
if success1 and success2:
|
52 |
+
# Display the frames side-by-side
|
53 |
+
frames = np.hstack((frame1, frame2)) # Concatenate frames horizontally
|
54 |
+
cv2.imshow('Two Cameras', frames) # Display the combined frame
|
55 |
+
|
56 |
+
# Check for keyboard input to quit
|
57 |
+
if cv2.waitKey(1) & 0xFF == ord('q'):
|
58 |
+
break
|
59 |
+
else:
|
60 |
+
# Handle camera failure
|
61 |
+
print("Error capturing frames from one or both cameras.")
|
62 |
+
break
|
63 |
+
|
64 |
+
# Release cameras
|
65 |
+
camera1.release()
|
66 |
+
camera2.release()
|
67 |
+
cv2.destroyAllWindows()
|
68 |
+
|
69 |
+
# Try to open two cameras
|
70 |
+
try:
|
71 |
+
camera1 = cv2.VideoCapture(0) # Open camera 0
|
72 |
+
camera2 = cv2.VideoCapture(0) # Open camera 1
|
73 |
+
|
74 |
+
# Check if both cameras opened successfully
|
75 |
+
if camera1.isOpened() and camera2.isOpened():
|
76 |
+
display_two_cameras(camera1, camera2)
|
77 |
+
else:
|
78 |
+
print("Failed to open both cameras. Showing single camera feed.")
|
79 |
+
|
80 |
+
# Open and display only available camera
|
81 |
+
camera = cv2.VideoCapture(0 if not camera1.isOpened() else 1)
|
82 |
+
if camera.isOpened():
|
83 |
+
while True:
|
84 |
+
success, frame = camera.read()
|
85 |
+
if success:
|
86 |
+
cv2.imshow('Single Camera', frame)
|
87 |
+
if cv2.waitKey(1) & 0xFF == ord('q'):
|
88 |
+
break
|
89 |
+
else:
|
90 |
+
print("Error capturing frame.")
|
91 |
+
break
|
92 |
+
|
93 |
+
camera.release()
|
94 |
+
cv2.destroyAllWindows()
|
95 |
+
except Exception as e:
|
96 |
+
print(f"Error accessing cameras: {e}")
|
97 |
+
|
98 |
+
|
99 |
+
# Interfaz
|
100 |
+
st.set_page_config(page_title="Tracking YOLOv8")
|
101 |
+
st.title("Tracking YOLOv8")
|
102 |
+
play_button_pressed = st.empty()
|
103 |
+
stop_button_pressed = st.button("Detener")
|
104 |
+
|
105 |
+
iou = float(st.sidebar.slider("NMS IoU threshold", 30, 100, 80)) / 100 # Umbral de intersecci贸n sobre uni贸n (IoU) para NMS
|
106 |
+
conf = float(st.sidebar.slider("Umbral o threshold", 30, 100, 80)) / 100 # Select Model Confidence
|
107 |
+
|
108 |
+
st_frame_camara_1 = st.empty()
|
109 |
+
st_frame_camara_2 = st.empty()
|
110 |
+
|
111 |
+
st_cantidad_1 = st.empty()
|
112 |
+
st_cantidad_2 = st.empty()
|
113 |
+
|
114 |
+
play_button_1 = st.button("Iniciar c谩mara 1", on_click=inferir_camara(camera1, iou, conf, st_frame_camara_1, st_cantidad_1, stop_button_pressed))
|
115 |
+
#play_button_2 = st.button("Iniciar c谩mara 2", on_click=inferir_camara(camera2, iou, conf, st_frame_camara_2, st_cantidad_2, stop_button_pressed))
|
116 |
+
|
117 |
+
#camera1.release()
|
118 |
+
#camera2.release()
|
119 |
+
#cv2.destroyAllWindows()
|