-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobject_tracking_final.py
More file actions
171 lines (127 loc) · 2.96 KB
/
Copy pathobject_tracking_final.py
File metadata and controls
171 lines (127 loc) · 2.96 KB
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
import cv2
import time
from ultralytics import YOLO
from deep_sort_realtime.deepsort_tracker import DeepSort
# Load YOLO model
model = YOLO("yolov8n.pt")
# Initialize tracker
tracker = DeepSort(
max_age=50,
n_init=2,
max_iou_distance=0.8
)
cap = cv2.VideoCapture(0)
cap.set(cv2.CAP_PROP_FRAME_WIDTH, 1280)
cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 720)
cv2.namedWindow(
"Final Object Tracking System",
cv2.WINDOW_NORMAL
)
cv2.resizeWindow(
"Final Object Tracking System",
1200,
800
)
# Video recording setup
frame_width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
frame_height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
out = cv2.VideoWriter(
"tracked_video.mp4",
cv2.VideoWriter_fourcc(*'mp4v'),
20,
(frame_width, frame_height)
)
prev_time = time.time()
allowed_classes = [
"person",
"cell phone",
"bottle",
"chair",
"laptop"
]
cv2.namedWindow(
"Final Object Tracking System",
cv2.WINDOW_NORMAL
)
cv2.resizeWindow(
"Final Object Tracking System",
1200,
800
)
while True:
ret, frame = cap.read()
if not ret:
break
results = model(frame)
detections = []
for result in results:
for box in result.boxes:
confidence = float(box.conf[0])
if confidence < 0.6:
continue
class_id = int(box.cls[0])
class_name = model.names[class_id]
if class_name not in allowed_classes:
continue
x1, y1, x2, y2 = map(int, box.xyxy[0])
width = x2 - x1
height = y2 - y1
detections.append(
([x1, y1, width, height], confidence, class_name)
)
tracks = tracker.update_tracks(
detections,
frame=frame
)
object_count = 0
for track in tracks:
if not track.is_confirmed():
continue
object_count += 1
track_id = track.track_id
x1, y1, x2, y2 = map(int, track.to_ltrb())
cv2.rectangle(
frame,
(x1, y1),
(x2, y2),
(0, 255, 0),
2
)
cv2.putText(
frame,
f"ID: {track_id}",
(x1, y1 - 10),
cv2.FONT_HERSHEY_SIMPLEX,
0.7,
(0, 255, 0),
2
)
current_time = time.time()
fps = 1 / (current_time - prev_time)
prev_time = current_time
cv2.putText(
frame,
f"FPS: {int(fps)}",
(20, 40),
cv2.FONT_HERSHEY_SIMPLEX,
0.8,
(0, 255, 255),
2
)
cv2.putText(
frame,
f"Objects: {object_count}",
(20, 80),
cv2.FONT_HERSHEY_SIMPLEX,
0.8,
(0, 255, 255),
2
)
out.write(frame)
cv2.imshow("Final Object Tracking System", frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
out.release()
cv2.destroyAllWindows()
print("Video saved as tracked_video.mp4")