vagheshpatel commited on
Commit
07e538e
·
verified ·
1 Parent(s): 807b82c

Sync motion-tracking from metro-analytics-catalog

Browse files
Files changed (1) hide show
  1. README.md +6 -1
README.md CHANGED
@@ -7,7 +7,7 @@
7
  | **Category** | Object Detection + Multi-Object Tracking |
8
  | **Base Model** | [YOLO26](https://docs.ultralytics.com/models/yolo26/) (Ultralytics) + [BoT-SORT](https://github.com/NirAharon/BoT-SORT) tracker |
9
  | **Source Framework** | PyTorch (Ultralytics) |
10
- | **Supported Precisions** | FP32, FP16, FP16-INT8 |
11
  | **Inference Engine** | OpenVINO |
12
  | **Hardware** | CPU, GPU, NPU |
13
  | **Detected Class(es)** | Configurable (default: all 80 COCO classes) |
@@ -42,6 +42,7 @@ The default tracker is BoT-SORT; ByteTrack is available as an alternative with l
42
  ## Prerequisites
43
 
44
  - Python 3.11+
 
45
  - [Install OpenVINO](https://docs.openvino.ai/2026/get-started/install-openvino.html) (latest version)
46
  - [Install Intel DLStreamer](https://docs.openedgeplatform.intel.com/2026.0/edge-ai-libraries/dlstreamer/get_started/install/install_guide_ubuntu.html) (latest version)
47
 
@@ -52,6 +53,10 @@ python3 -m venv .venv --system-site-packages
52
  source .venv/bin/activate
53
  ```
54
 
 
 
 
 
55
  ---
56
 
57
  ## Getting Started
 
7
  | **Category** | Object Detection + Multi-Object Tracking |
8
  | **Base Model** | [YOLO26](https://docs.ultralytics.com/models/yolo26/) (Ultralytics) + [BoT-SORT](https://github.com/NirAharon/BoT-SORT) tracker |
9
  | **Source Framework** | PyTorch (Ultralytics) |
10
+ | **Supported Precisions** | FP32, FP16, INT8 (mixed-precision) |
11
  | **Inference Engine** | OpenVINO |
12
  | **Hardware** | CPU, GPU, NPU |
13
  | **Detected Class(es)** | Configurable (default: all 80 COCO classes) |
 
42
  ## Prerequisites
43
 
44
  - Python 3.11+
45
+ - `ffmpeg` (`sudo apt install ffmpeg`) — used by both samples to encode output video
46
  - [Install OpenVINO](https://docs.openvino.ai/2026/get-started/install-openvino.html) (latest version)
47
  - [Install Intel DLStreamer](https://docs.openedgeplatform.intel.com/2026.0/edge-ai-libraries/dlstreamer/get_started/install/install_guide_ubuntu.html) (latest version)
48
 
 
53
  source .venv/bin/activate
54
  ```
55
 
56
+ > **Note:** The `--system-site-packages` flag is required so the virtual
57
+ > environment can access the system-installed OpenVINO and DLStreamer Python
58
+ > packages.
59
+
60
  ---
61
 
62
  ## Getting Started