-
Notifications
You must be signed in to change notification settings - Fork 15
/
yolo_preview.py
197 lines (164 loc) · 8.87 KB
/
yolo_preview.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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#!/usr/bin/env python3
"""Show OAK camera livestream with detection model output.
Source: https://github.com/maxsitt/insect-detect
License: GNU GPLv3 (https://choosealicense.com/licenses/gpl-3.0/)
Author: Maximilian Sittinger (https://github.com/maxsitt)
Docs: https://maxsitt.github.io/insect-detect-docs/
- run a custom YOLO object detection model (.blob format) on-device (Luxonis OAK)
-> inference on downscaled + stretched/cropped LQ frames (default: 320x320 px)
- show downscaled LQ frames + model output (bounding box, label, confidence) + fps
in a new window (e.g. via X11 forwarding)
- optional arguments:
'-fov' default: stretch frames to square for model input and visualization ('-fov stretch')
-> full FOV is preserved, only aspect ratio is changed (adds distortion)
optional: crop frames to square for model input and visualization ('-fov crop')
-> FOV is reduced due to cropping of left and right side (no distortion)
'-af' set auto focus range in cm (min - max distance to camera)
-> e.g. '-af 14 20' to restrict auto focus range to 14-20 cm
'-mf' set manual focus position in cm (distance to camera)
-> e.g. '-mf 14' to set manual focus position to 14 cm
'-ae' use bounding box coordinates from detections to set auto exposure region
'-log' print available Raspberry Pi memory, RPi CPU utilization + temperature,
OAK memory + CPU usage and OAK chip temperature
based on open source scripts available at https://github.com/luxonis
"""
import argparse
import json
import logging
import time
from pathlib import Path
import cv2
import depthai as dai
from apscheduler.schedulers.background import BackgroundScheduler
from utils.general import frame_norm
from utils.log import print_logs
from utils.oak_cam import convert_bbox_roi, convert_cm_lens_position
# Define optional arguments
parser = argparse.ArgumentParser()
group = parser.add_mutually_exclusive_group()
parser.add_argument("-fov", "--adjust_fov", choices=["stretch", "crop"], default="stretch", type=str,
help="Stretch frames to square ('stretch') and preserve full FOV or "
"crop frames to square ('crop') and reduce FOV.")
group.add_argument("-af", "--af_range", nargs=2, type=int,
help="Set auto focus range in cm (min - max distance to camera).", metavar=("CM_MIN", "CM_MAX"))
group.add_argument("-mf", "--manual_focus", type=int,
help="Set manual focus position in cm (distance to camera).", metavar="CM")
parser.add_argument("-ae", "--bbox_ae_region", action="store_true",
help="Use bounding box coordinates from detections to set auto exposure region.")
parser.add_argument("-log", "--print_logs", action="store_true",
help=("Print RPi available memory, RPi CPU utilization + temperature, "
"OAK memory + CPU usage and OAK chip temperature."))
args = parser.parse_args()
# Set file paths to the detection model and corresponding config JSON
MODEL_PATH = Path.home() / "insect-detect" / "models" / "yolov5n_320_openvino_2022.1_4shave.blob"
CONFIG_PATH = Path.home() / "insect-detect" / "models" / "json" / "yolov5_v7_320.json"
# Get detection model metadata from config JSON
with CONFIG_PATH.open(encoding="utf-8") as config_json:
config = json.load(config_json)
nn_config = config.get("nn_config", {})
nn_metadata = nn_config.get("NN_specific_metadata", {})
classes = nn_metadata.get("classes", {})
coordinates = nn_metadata.get("coordinates", {})
anchors = nn_metadata.get("anchors", {})
anchor_masks = nn_metadata.get("anchor_masks", {})
iou_threshold = nn_metadata.get("iou_threshold", {})
confidence_threshold = nn_metadata.get("confidence_threshold", {})
nn_mappings = config.get("mappings", {})
labels = nn_mappings.get("labels", {})
# Create depthai pipeline
pipeline = dai.Pipeline()
# Create and configure color camera node
cam_rgb = pipeline.create(dai.node.ColorCamera)
#cam_rgb.setImageOrientation(dai.CameraImageOrientation.ROTATE_180_DEG) # rotate image 180°
cam_rgb.setResolution(dai.ColorCameraProperties.SensorResolution.THE_1080_P)
SENSOR_RES = cam_rgb.getResolutionSize()
cam_rgb.setPreviewSize(320, 320) # downscale frames for model input -> LQ frames
if args.adjust_fov == "stretch":
cam_rgb.setPreviewKeepAspectRatio(False) # stretch frames (16:9) to square (1:1) for model input
cam_rgb.setInterleaved(False) # planar layout
cam_rgb.setColorOrder(dai.ColorCameraProperties.ColorOrder.BGR)
cam_rgb.setFps(25) # frames per second available for auto focus/exposure and model input
if args.af_range:
# Convert cm to lens position values and set auto focus range
lens_pos_min, lens_pos_max = convert_cm_lens_position((args.af_range[1], args.af_range[0]))
cam_rgb.initialControl.setAutoFocusLensRange(lens_pos_min, lens_pos_max)
if args.manual_focus:
# Convert cm to lens position value and set manual focus position
lens_pos = convert_cm_lens_position(args.manual_focus)
cam_rgb.initialControl.setManualFocus(lens_pos)
# Create detection network node and define input + outputs
nn = pipeline.create(dai.node.YoloDetectionNetwork)
cam_rgb.preview.link(nn.input) # downscaled + stretched/cropped LQ frames as model input
nn.input.setBlocking(False)
xout_rgb = pipeline.create(dai.node.XLinkOut)
xout_rgb.setStreamName("frame")
nn.passthrough.link(xout_rgb.input)
xout_nn = pipeline.create(dai.node.XLinkOut)
xout_nn.setStreamName("nn")
nn.out.link(xout_nn.input)
# Set detection model specific settings
nn.setBlobPath(MODEL_PATH)
nn.setNumClasses(classes)
nn.setCoordinateSize(coordinates)
nn.setAnchors(anchors)
nn.setAnchorMasks(anchor_masks)
nn.setIouThreshold(iou_threshold)
nn.setConfidenceThreshold(confidence_threshold)
nn.setNumInferenceThreads(2)
if args.bbox_ae_region:
# Create XLinkIn node to send control commands to color camera node
xin_ctrl = pipeline.create(dai.node.XLinkIn)
xin_ctrl.setStreamName("control")
xin_ctrl.out.link(cam_rgb.inputControl)
# Connect to OAK device and start pipeline in USB2 mode
with dai.Device(pipeline, maxUsbSpeed=dai.UsbSpeed.HIGH) as device:
if args.print_logs:
# Print RPi + OAK info every second
logging.getLogger("apscheduler").setLevel(logging.WARNING)
scheduler = BackgroundScheduler()
scheduler.add_job(print_logs, "interval", seconds=1, id="log")
scheduler.start()
device.setLogLevel(dai.LogLevel.INFO)
device.setLogOutputLevel(dai.LogLevel.INFO)
# Create output queues to get the frames and detections from the outputs defined above
q_frame = device.getOutputQueue(name="frame", maxSize=4, blocking=False)
q_nn = device.getOutputQueue(name="nn", maxSize=4, blocking=False)
if args.bbox_ae_region:
# Create input queue to send control commands to OAK camera
q_ctrl = device.getInputQueue(name="control", maxSize=16, blocking=False)
# Set start time of recording and create counter to measure fps
start_time = time.monotonic()
counter = 0
while True:
# Get LQ frames + model output (detections) and show in new window together with fps
if q_frame.has() and q_nn.has():
frame_lq = q_frame.get().getCvFrame()
dets = q_nn.get().detections
counter += 1
fps = round(counter / (time.monotonic() - start_time), 2)
for detection in dets:
# Get bounding box from detection model
bbox_orig = (detection.xmin, detection.ymin, detection.xmax, detection.ymax)
bbox_norm = frame_norm(frame_lq, bbox_orig)
# Get metadata from detection model
label = labels[detection.label]
det_conf = round(detection.confidence, 2)
if args.bbox_ae_region and detection == dets[0]:
# Use bbox from earliest detection to set auto exposure region
roi_x, roi_y, roi_w, roi_h = convert_bbox_roi(bbox_orig, SENSOR_RES)
q_ctrl.send(dai.CameraControl().setAutoExposureRegion(roi_x, roi_y, roi_w, roi_h))
cv2.putText(frame_lq, label, (bbox_norm[0], bbox_norm[3] + 13),
cv2.FONT_HERSHEY_SIMPLEX, 0.4, (255, 255, 255), 1)
cv2.putText(frame_lq, f"{det_conf}", (bbox_norm[0], bbox_norm[3] + 25),
cv2.FONT_HERSHEY_SIMPLEX, 0.4, (255, 255, 255), 1)
cv2.rectangle(frame_lq, (bbox_norm[0], bbox_norm[1]),
(bbox_norm[2], bbox_norm[3]), (0, 0, 255), 2)
cv2.putText(frame_lq, f"fps: {fps}", (4, frame_lq.shape[0] - 10),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (255, 255, 255), 2)
cv2.imshow("yolo_preview", frame_lq)
#print(f"fps: {fps}")
# streaming the frames via SSH (X11 forwarding) will slow down fps
# comment out "cv2.imshow()" and print fps to console for true fps
# Stop script and close window by pressing "Q"
if cv2.waitKey(1) == ord("q"):
break