Hi. I’ve been studying how to use hailo8. I converted my custom pt file to hef file and it worked on my rasberryPI 5 by executing this command on the terminal:
You should consider to write a wrap Python file where inside of it there are hardcoded the —options which will be run from the wrapper with subprocess, for example:
import subprocess
result = subprocess.run([“ls”, “-l”], capture_output=True, text=True)
print(result.stdout)
This program runs the command ls -l into prompt and display the result with print, you can change the command with “python my_script.py —myoptions…”