forked from luxonis/depthai-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevice_queue_event.py
More file actions
executable file
·51 lines (38 loc) · 1.39 KB
/
Copy pathdevice_queue_event.py
File metadata and controls
executable file
·51 lines (38 loc) · 1.39 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
#!/usr/bin/env python3
"""
This example demonstrates use of queue events to block a thread until a message
arrives to any (of the specified) queue
"""
import cv2
import depthai as dai
# Create pipeline
pipeline = dai.Pipeline()
# Define sources and outputs
camRgb = pipeline.create(dai.node.ColorCamera)
camMono = pipeline.create(dai.node.MonoCamera)
xoutRgb = pipeline.create(dai.node.XLinkOut)
xoutMono = pipeline.create(dai.node.XLinkOut)
xoutRgb.setStreamName("rgb")
xoutMono.setStreamName("mono")
# Properties
camRgb.setInterleaved(True)
camRgb.setPreviewSize(300, 300)
# Linking
camRgb.preview.link(xoutRgb.input)
camMono.out.link(xoutMono.input)
# Connect to device and start pipeline
with dai.Device(pipeline) as device:
# Clear queue events
device.getQueueEvents()
while True:
# Block until a message arrives to any of the specified queues
queueName = device.getQueueEvent(("rgb", "mono"))
# Getting that message from queue with name specified by the event
# Note: number of events doesn't necessarily match number of messages in queues
# because queues can be set to non-blocking (overwriting) behavior
message = device.getOutputQueue(queueName).get()
# Display arrived frames
if type(message) == dai.ImgFrame:
cv2.imshow(queueName, message.getCvFrame())
if cv2.waitKey(1) == ord('q'):
break