Hello,
I have an OAK-D CM4 PoE which I am remotely accessing through ssh and vnc, but the raspberry pi is unable to find the camera in my main scripts and cannot find any devices using the following code.
import depthai as dai
devices = dai.DeviceBootloader.getAllAvailableDevices()
if len(devices) > 0:
for device in devices:
print("Found devices:", device.name)
else:
print("No devices found, check camera is properly connected.")
I have checked all the cables and everything is properly connected. Could this be a software issue? I would appreciate any assistance.
Thank you.