haldun
October 21, 2024, 12:34pm
1
hello
we try to run detection with tracker sample from this link
Hailo-Application-Code-Examples/runtime/python/detection_with_tracker at main · hailo-ai/Hailo-Application-Code-Examples · GitHub
I create virtual environment and install hailort-4.18.0-cp311-cp311-linux_aarch64.whl successfully but when i start in
install pip install -r requirements.txt many error had faced
1- ModuleNotFoundError: No module named ‘Cython’
2- installed Cython then repeat pip install -r requirements.txt
but i faced this error
ModuleNotFoundError: No module named ‘numpy’
2- installed numpy then repeat pip install -r requirements.txt
but i faced another error
Hi @haldun ,
Currently, the detection_with_tracker example is not supported on the rpi5.
Actually, this example does work on the Pi 5. I just had to install this updated version of bytetrack first:
main
← rubenvandeven:main
opened 12:26PM - 21 Nov 24 UTC
Hi Kadirnar,
Thanks for implementing this tracker. Based on work in other forks… , I made some changes to the package:
- Remove Pytorch dependency (this was done in a fork by @0xNOY)
- Changed the dependency on lap to [lapx](https://pypi.org/project/lapx/) to have compatibility with python >= 3.10 (following the example of forks by @gimletlabs and @TomDarmon )
- Relaxed the dependence to improve package resolution in a larger project.
- I ran into an exception in `update()` when `dets` is an empy array/tensor.
- Fix issue #2 by adding an `xyxy2ltwh()` function.
It would be nice to see these revisions upstreamed. Feel free to cherrypick.