How to run re-id models on Raspberry Pi

Hello I saw that there are available Re-ID models for the Hailo-8L platform:

How do I run these on the Raspberry Pi? On the hailo rpi examples git project there doesnt appear to be any pipeline for Re-ID.

If possible I would love to run this on the Degyrum SDK @shashi as it already works really well for me for yolo obejct detection with Picamera.

Thank you.

Hi @neoklisv
It is relatively easy to add this to PySDK. How do you plan to use it? The output of such models is an embedding vector. Do you plan to use it as a part of tracking pipeline?

yes i was thinking of combining it with yolo object detection for bounding box tracking

Hi @neoklisv
We prepared an example for person re-id using PySDK. Please take a look: hailo_examples/examples/014_person_reid.ipynb at main · DeGirum/hailo_examples

thank you very much!