We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13dd1d9 commit 13ff23bCopy full SHA for 13ff23b
src/modules/imaging/camera.py
@@ -155,7 +155,9 @@ def start(self):
155
"""Start the depth-perception process on the OAK-D"""
156
print("Starting OAK-D Connection")
157
self.device = dai.Device(self.pipeline)
158
- self.queue = self.device.getOutputQueue("out", maxSize=1, blocking=False)
+ self.queue = self.device.getOutputQueue("out")
159
+ self.queue.setBlocking(False)
160
+ self.queue.setMaxSize(1)
161
162
def stop(self):
163
"""Stop the depth-perception process"""
0 commit comments