I'm reading through the code.
https://github.com/luxonis/depthai-core/blob/main/src/device/Device.cpp
https://github.com/luxonis/depthai-core/blob/main/src/device/DeviceBase.cpp
https://github.com/luxonis/depthai-core/blob/main/include/depthai/device/Device.hpp
Adding to the discussion, what I'm seeing is that both dai::Device
and dai::DeviceBase
constructors always call startPipeline()
, which is an expensive blocking operation. I don't mean to be rude, but this is a crime against object orientation.