Thanks for all of the help so far! I’m making good progress with my project, but I wanted to ask a question about what the preferred method in the Hailo ecosystem is for doing something.
My application uses pose detection and face detection/face landmark detection. When building the face detection part of the project I ran into a problem because I have a hailo8l (pi AI Hat) and after loading the face detection hef (scrfd_2.5) I can’t load the landmark detector without getting an error about no available devices. So I guess that means I need to load the face detector, do the inference, unload it, load the landmark detector, unload it, etc. Once I integrate with this the pose detector I’ll need to do the same for that as well (I’m using async inference).
That seems inefficient. Is there a better/preferred way to have multiple hefs available for inference on a Hailo8l? Is it not possible to do parallel inference of 2 hefs?