Describe the bug
Not sure what happened. When I press 'q' to stop the program, it generates the dump reports.
Minimal Reproducible Example
The crash only appeared once. And the code is quite simple.
import depthai as dai
import cv2
from datetime import timedelta
pipeline = dai.Pipeline()
left = pipeline.create(dai.node.ColorCamera)
right = pipeline.create(dai.node.ColorCamera)
sync = pipeline.create(dai.node.Sync)
out = pipeline.create(dai.node.XLinkOut)
left.setResolution(dai.ColorCameraProperties.SensorResolution.THE_800_P)
left.setCamera("left")
right.setResolution(dai.ColorCameraProperties.SensorResolution.THE_800_P)
right.setCamera("right")
out.setStreamName("out")
sync.setSyncThreshold(timedelta(milliseconds=30))
left.video.link(sync.inputs["left"])
right.video.link(sync.inputs["right"])
sync.out.link(out.input)
with dai.Device(pipeline) as device:
queue = device.getOutputQueue("out", 10, False)
while True:
msgGrp = queue.get()
for name, msg in msgGrp:
frame = msg.getCvFrame()
cv2.imshow(name, frame)
if cv2.waitKey(1) == ord("q"):
break
Expected behavior
The program should be quited cleanly.
Screenshots
[2024-10-28 13:35:34.244] [depthai] [error] Device with id 14442C10719237D200 has crashed. Crash dump logs are stored in: E:\OAK\.cache\depthai\crashdumps\eae46b6bad4c81652d444811160a8829a8b00f29\crash_dump.json - please report to developers.
Check if issue already exists
Describe the bug Not sure what happened. When I press 'q' to stop the program, it generates the dump reports.
Minimal Reproducible Example The crash only appeared once. And the code is quite simple.
Expected behavior The program should be quited cleanly.
Screenshots
Pipeline Graph
N/A
Attach system log
Additional context Device: OAK-D-SR-POE crash_dump.json