Using YOLOv8n for object detection and then determining whether two objects in consecutive frames are the same target by calculating the Intersection over Union (IoU) between them, thereby achieving the effect of object tracking.
reCompuer AI Box | reComputer Industry AI Box |
---|---|
Purchase Now | Purchase Now |
sudo apt update && sudo apt full-upgrade -y && sudo apt install hailo-all
git clone https://github.com/Seeed-Projects/track_people_with_AIBox.git
cd fall_detection_with_AIBox
python -m venv .env --system-site-packages && source .env/bin/activate
pip install -r requirements.txt
python app.py -i ./people-walking.mp4 -n ./yolov8n.hef --show-fps -l ./common/coco.txt --track
This project references Hailo-Application-Code-Examples.