• Reconnection to running OAK device?

Hello,
is it possible to connect to already running code on OAK camera (OAK-D Pro)? I would like for example run system info code, terminate my Python program on PC, and later "re-connect" and get output messages without modification of pipeline on the OAK device.
(later I would use battery and collect some data without PC and then re-connect and get collected data).
As my first experiment I used:
https://github.com/luxonis/depthai-python/blob/main/examples/SystemLogger/system_information.py
but I have no idea, if the output could be generated without running this script on PC?
thank you for any hint
Martin
p.s. https://docs.luxonis.com/projects/api/en/latest/components/device/
"When starting the device, you have to upload a Pipeline to it, which will get executed on the VPU." so it is probably not possible to use "already running" pipeline?

  • erik replied to this.

    Hello m3d ,
    that's not possible, after you terminate the connection with the device, the device will remove the pipeline/assets to be ready for the next connection.
    As Hussain mentioned, if you would like to run pipeline in standalone mode, check the docs page he linked. This still wouldn't allow you to do exactly what you want, but you could eg. stream results via WiFi (OAK IoT) or ethernet (OAK PoE) to the server.

    Thanks, Erik

    Hello Hussain and Erik,
    I have "OAK-D Pro" which probably does not support standalone mode. Thank you very much for fast feedback. Much appreciated 🙂
    thanks
    Martin