-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvideo_mobilenet.py
More file actions
160 lines (135 loc) · 4.1 KB
/
Copy pathvideo_mobilenet.py
File metadata and controls
160 lines (135 loc) · 4.1 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
#!/usr/bin/env python3
from pathlib import Path
import sys
import cv2
import depthai as dai
import numpy as np
from time import monotonic, perf_counter
# Get argument first
parentDir = Path(__file__).parent
nnPath = str(
(parentDir / Path("models/mobilenet-ssd_openvino_2021.2_8shave.blob"))
.resolve()
.absolute()
)
videoPath = str((parentDir / Path("models/construction_vest.mp4")).resolve().absolute())
if len(sys.argv) > 2:
nnPath = sys.argv[1]
videoPath = sys.argv[2]
if not Path(nnPath).exists() or not Path(videoPath).exists():
import sys
raise FileNotFoundError(
f'Required file/s not found, please run "{sys.executable} install_requirements.py"'
)
# MobilenetSSD label texts
labelMap = [
"background",
"aeroplane",
"bicycle",
"bird",
"boat",
"bottle",
"bus",
"car",
"cat",
"chair",
"cow",
"diningtable",
"dog",
"horse",
"motorbike",
"person",
"pottedplant",
"sheep",
"sofa",
"train",
"tvmonitor",
]
# Create pipeline
pipeline = dai.Pipeline()
pipeline.setOpenVINOVersion(dai.OpenVINO.Version.VERSION_2021_2)
# Define sources and outputs
nn = pipeline.createMobileNetDetectionNetwork()
xinFrame = pipeline.createXLinkIn()
nnOut = pipeline.createXLinkOut()
xinFrame.setStreamName("inFrame")
nnOut.setStreamName("nn")
# Properties
nn.setConfidenceThreshold(0.5)
nn.setBlobPath(nnPath)
nn.setNumInferenceThreads(2)
nn.input.setBlocking(False)
# Linking
xinFrame.out.link(nn.input)
nn.out.link(nnOut.input)
fps = 0.0
# Connect to device and start pipeline
with dai.Device(pipeline) as device:
# Input queue will be used to send video frames to the device.
qIn = device.getInputQueue(name="inFrame")
# Output queue will be used to get nn data from the video frames.
qDet = device.getOutputQueue(name="nn", maxSize=4, blocking=False)
frame = None
detections = []
# nn data, being the bounding box locations, are in <0..1> range - they need to be normalized with frame width/height
def frameNorm(frame, bbox):
normVals = np.full(len(bbox), frame.shape[0])
normVals[::2] = frame.shape[1]
return (np.clip(np.array(bbox), 0, 1) * normVals).astype(int)
def to_planar(arr: np.ndarray, shape: tuple) -> np.ndarray:
return cv2.resize(arr, shape).transpose(2, 0, 1).flatten()
def displayFrame(name, frame):
for detection in detections:
bbox = frameNorm(
frame, (detection.xmin, detection.ymin, detection.xmax, detection.ymax)
)
cv2.putText(
frame,
labelMap[detection.label],
(bbox[0] + 10, bbox[1] + 20),
cv2.FONT_HERSHEY_TRIPLEX,
0.5,
255,
)
cv2.putText(
frame,
f"{int(detection.confidence * 100)}%",
(bbox[0] + 10, bbox[1] + 40),
cv2.FONT_HERSHEY_TRIPLEX,
0.5,
255,
)
cv2.rectangle(frame, (bbox[0], bbox[1]), (bbox[2], bbox[3]), (255, 0, 0), 2)
cv2.putText(
frame,
"FPS: " + str(fps),
(20, 20),
cv2.FONT_HERSHEY_TRIPLEX,
1,
255,
)
# Show the frame
cv2.imshow(name, frame)
cap = cv2.VideoCapture(videoPath)
while cap.isOpened():
t0 = perf_counter()
read_correctly, frame = cap.read()
if not read_correctly:
break
frame = cv2.resize(frame, (800, 450))
img = dai.ImgFrame()
img.setData(to_planar(frame, (300, 300)))
img.setTimestamp(monotonic())
img.setWidth(300)
img.setHeight(300)
qIn.send(img)
t1 = perf_counter()
inDet = qDet.get()
if inDet is not None:
detections = inDet.detections
print("Inference time:", perf_counter() - t1)
if frame is not None:
displayFrame("rgb", frame)
if cv2.waitKey(1) == ord("q"):
break
fps = int(1.0 / (perf_counter() - t0))