I want to extract the .svo file from a recording and at the same time extract the skeleton of that same recording. I saw that both processes require access to the sensor, so the second fails to launch when the first is recording. Is there any way I can execute both programs at the same time?
Im training a model myself and i want to compare it to how you model processes a certain point cloud. For that I need to feed my model the same point cloud I am extracting the skeleton from using ZED’s software.
I tried earlier to launch at the same time the programs your sdk provides in the samples category for recording and body tracking, but whenever I try to launch the second one (doesnt matter wich one is second) it cant gain access to the sensor.
A camera can only be accessed by one application or process at a time.
To use the feed in a second application, you’d need to open the camera in the first one, set up a local network stream from it, and then have the second application connect to that stream rather than trying to access the camera directly.