- Edited
I have an application in C++ which will be using DepthAI, but for the purposes of easier development I would like to construct the pipeline in python then pass it back to C++ then unwrap the python object back into a dai::Device
object which can then be manipulated(including the now running pipeline) in C++, is there an accepted way to do this? In summary:
- from C++ call some file, say "pipeline_builder.py" which contains some method "build" which builds a pipeline and returns a dai.device python object
- get the returned object and unwrap/cast(?) as
dai::Device