I've pulled the code from depthai-experiments/gen2-people-tracker/api, and repurposed it. I changed the script.py file and removed the ability for it to run on a pre-recorded video, and only on streaming video. I am now trying to run it in a new python file, where I will have two separate pipelines running at once. I have the pipeline being instantiated, then setting the device with a "with" statement. It then is returning the RGB frames alongside the tracklets with the .getOutputQueue() method.
inside of a while loop, I have the RBG output queue (rgbQ), trying to pull the RGB frames usingrbgQ.tryGet()
This runs for a few seconds, until I then get the following error
[system] [critical] Fatal error. Please report to developers. Log: 'Fatal error on MSS CPU: trap: 00, address: 00000000' '0'
This hasn't happened in any other scripts I've ran. What does this mean, and how can I get around it?