-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetect-cam.py
49 lines (27 loc) · 1 KB
/
detect-cam.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
from ultralytics import YOLO
import cv2 as cv
import os
import numpy as np
# Load the custom YOLOv8 model
model = YOLO('51ep-16-GPU.pt')
count = 0
for item in os.listdir("test-video/"):
if item == ".DS_Store":
continue
cam = cv.VideoCapture("test-video/"+item)
width = int(cam.get(cv.CAP_PROP_FRAME_WIDTH))
height = int(cam.get(cv.CAP_PROP_FRAME_HEIGHT))
fps = cam.get(cv.CAP_PROP_FPS)
fourcc = cv.VideoWriter_fourcc(*'mp4v')
out = cv.VideoWriter(item, fourcc, fps, (width, height))
while True:
ret, frame = cam.read()
if len(np.shape(frame)) == 0:
continue
result = model(frame)
detect = result[0].plot()
cv.imshow("detect",detect)
out.write(detect)
if cv.waitKey(1) & 0xFF == ord("q"):
break
print(count, "<<<<<<<<<<<<<<<<<<<<-END->>>>>>>>>>>>>>>>>>>")