Hi everyone,
I’m working on a single-object tracking application on Hailo-8L and I’m looking for a neural tracker that can run almost entirely on the Hailo accelerator.
My setup
- Hailo-8L
- Hailo DFC 3.34.0
- HailoRT
- Single object (car tracking)
- Linux / C++
- Detector: YOLO (already running successfully on Hailo)
What I’ve already tried
I successfully exported and parsed the NanoTrack backbone.
However, the NanoTrack head (DepthwiseBAN) fails during parsing because of the dynamic depthwise cross-correlation layer.
I’ve also looked into SiamRPN/PySOT and understand they rely on similar Siamese correlation operations that are difficult for the Hailo compiler.
What I’m looking for
I’m not looking for ByteTrack, DeepSORT, or CPU-based tracking.
I’m specifically looking for a neural single-object tracker whose entire network (or nearly the entire network) can be compiled into a .hef and run on Hailo.
Examples I’m curious about:
- LightTrack
- SiamFC++
- MixFormer-lite
- OSTrack-lite
- HiFT
- ROMTrack
- Any custom CNN-based tracker
Has anyone successfully deployed a neural tracker like this on Hailo?
If yes, could you share:
- Tracker name
- GitHub/project
- Whether it compiles to
.hef - Any modifications required
Thanks!