ailia Tracker
Project description
ailia Tracker Python API
!! CAUTION !! “ailia” IS NOT OPEN SOURCE SOFTWARE (OSS). As long as user complies with the conditions stated in License Document, user may use the Software for free of charge, but the Software is basically paid software.
About ailia Tracker
ailia Tracker is a library for tracking the movement of objects based on object detection results. It provides a C API for native applications and a C# API for Unity. By using ailia Tracker, you can easily implement object tracking in your application.
Install from pip
You can install the ailia SDK free evaluation package with the following command.
pip3 install ailia_tracker
Install from package
You can install the ailia SDK from Package with the following command.
python3 bootstrap.py
pip3 install .
Usage
import ailia_tracker
tracker = ailia_tracker.AiliaTracker()
for frame in frames:
for detection in detections(frame):
tracker.add_target(detection.category, detection.prob, detection.x, detection.y, detection.w, detection.h)
tracker.compute()
for obj in tracker.get_objects():
print(obj.id, obj.category, obj.prob, obj.x, obj.y, obj.w, obj.h)
The coordinates of add_target and the tracking results are normalized to the image size (1 for the image width / height).
API specification
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ailia_tracker-1.1.1.tar.gz.
File metadata
- Download URL: ailia_tracker-1.1.1.tar.gz
- Upload date:
- Size: 481.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe72b95019f8267db409e3791e60114cce502d19d63694bfd202b87ceddaafc1
|
|
| MD5 |
ad6448bf1fec98791d8793b861e01ccc
|
|
| BLAKE2b-256 |
e34bb50586c0f8018001f411435ce8d5aca820c10c5c03895b30162c04c5a890
|
File details
Details for the file ailia_tracker-1.1.1-py3-none-any.whl.
File metadata
- Download URL: ailia_tracker-1.1.1-py3-none-any.whl
- Upload date:
- Size: 481.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e5a5beeaae1dd40e101ca00ac4d4974c292f6fe0e3df43e76e094e78cd6cf42
|
|
| MD5 |
4e28757774f530c07b6a43d5134f41bc
|
|
| BLAKE2b-256 |
7c15200a8450de060d8d747bdb1e98fb9125ee561b0ed71f3ed424795ecee773
|